diff --git a/.woodpecker.yaml b/.woodpecker.yaml index cf3da5d..0e916de 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -1,20 +1,37 @@ steps: - deploy: + tailwind: image: alpine:latest commands: - - apk add --no-cache curl zip zola + - apk add --no-cache curl - 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: + image: alpine:latest + commands: + - apk add --no-cache zola - zola build + - rm public/404.html public/robots.txt public/sitemap.xml + + zip: + image: alpine:latest + commands: + - apk add --no-cache zip - cd public - - rm 404.html robots.txt sitemap.xml - zip -r project.zip . -x ".*" + - mv project.zip .. + + upload: + image: alpine:latest + commands: + - apk add --no-cache curl - 'AUTH_HEADER="Authorization: Bearer $PAGES_API_KEY"' - API_URL=https://pages.hadeedahmad.com/pages/me - 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