This commit is contained in:
parent
07a94f8892
commit
04e19f22a9
1 changed files with 6 additions and 13 deletions
|
@ -1,34 +1,27 @@
|
||||||
steps:
|
steps:
|
||||||
tailwind:
|
tailwind:
|
||||||
image: alpine:latest
|
image: d3fk/tailwindcss:latest
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache curl
|
- tailwind -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:
|
zola:
|
||||||
image: alpine:latest
|
image: jauderho/zola
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache zola
|
|
||||||
- zola build
|
- zola build
|
||||||
- rm public/404.html public/robots.txt public/sitemap.xml
|
- rm public/404.html public/robots.txt public/sitemap.xml
|
||||||
|
|
||||||
zip:
|
zip:
|
||||||
image: alpine:latest
|
image: joshkeegan/zip
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache zip
|
|
||||||
- cd public
|
- cd public
|
||||||
- zip -r project.zip . -x ".*"
|
- zip -r project.zip . -x ".*"
|
||||||
- mv project.zip ..
|
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
image: alpine:latest
|
image: alpine/curl:latest
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache curl
|
|
||||||
- 'AUTH_HEADER="Authorization: Bearer $PAGES_API_KEY"'
|
- 'AUTH_HEADER="Authorization: Bearer $PAGES_API_KEY"'
|
||||||
- API_URL=https://pages.hadeedahmad.com/pages/me
|
- 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 ]
|
secrets: [ PAGES_API_KEY ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue