diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index affec8f..40f6129 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -13,7 +13,7 @@ jobs: build: runs-on: docker container: - image: hugomods/hugo:debian-node-lts-0.148.1 + image: hugomods/hugo:debian-node-lts-0.140.2 steps: - name: Pipeline info run: | @@ -21,11 +21,13 @@ jobs: - name: Install packages run: | - apt update + apk update + # For CI actions. + apk add nodejs-current # For website build. - apt install -y curl jq git + apk add tzdata coreutils curl jq git # For uploading. - apt install -y rsync ssh + apk add rsync openssh - uses: actions/checkout@v4 with: