From 04e19f22a97638fe311d778cb203b2bc650faf3a Mon Sep 17 00:00:00 2001 From: Hadeed Ahmad Date: Mon, 25 Nov 2024 22:25:52 +0500 Subject: [PATCH] Use prebuilt images --- .woodpecker.yaml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 0e916de..f7890a5 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -1,34 +1,27 @@ steps: tailwind: - image: alpine:latest + image: d3fk/tailwindcss:latest commands: - - 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 + - tailwind -o static/styles.css --minify zola: - image: alpine:latest + image: jauderho/zola commands: - - apk add --no-cache zola - zola build - rm public/404.html public/robots.txt public/sitemap.xml zip: - image: alpine:latest + image: joshkeegan/zip commands: - - apk add --no-cache zip - cd public - zip -r project.zip . -x ".*" - - mv project.zip .. upload: - image: alpine:latest + image: alpine/curl: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 + - curl -s -w "%{http_code}" -F "zipfile=@public/project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200 secrets: [ PAGES_API_KEY ]