This commit is contained in:
parent
6536413a1b
commit
07a94f8892
1 changed files with 20 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue