diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 26d1e65..cf3da5d 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -1,9 +1,11 @@ steps: deploy: - image: node:18-alpine + image: alpine:latest commands: - apk add --no-cache curl zip zola - - npx --yes tailwindcss -o static/styles.css --minify + - curl -sLO https://github.com/tailwindlabs/tailwindcss/releases/download/v3.4.15/tailwindcss-linux-x64 + - chmod +x tailwindcss-linux-x64 + - ./tailwindcss-linux-x64 -o static/styles.css --minify - zola build - cd public - rm 404.html robots.txt sitemap.xml @@ -13,7 +15,7 @@ steps: - curl -s -w "%{http_code}" -F "zipfile=@project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200 secrets: [ PAGES_API_KEY ] - when: - - event: manual - - event: push - branch: main +when: + - event: manual + - event: push + branch: main