31 lines
720 B
YAML
31 lines
720 B
YAML
steps:
|
|
tailwind:
|
|
image: d3fk/tailwindcss:latest
|
|
commands:
|
|
- tailwind -o static/styles.css --minify
|
|
|
|
zola:
|
|
image: jauderho/zola
|
|
commands:
|
|
- zola build
|
|
- rm public/404.html public/robots.txt public/sitemap.xml
|
|
|
|
zip:
|
|
image: joshkeegan/zip
|
|
commands:
|
|
- cd public
|
|
- zip -r project.zip . -x ".*"
|
|
|
|
upload:
|
|
image: alpine/curl:latest
|
|
commands:
|
|
- 'AUTH_HEADER="Authorization: Bearer $PAGES_API_KEY"'
|
|
- API_URL=https://pages.hadeedahmad.com/pages/me
|
|
- curl -s -w "%{http_code}" -F "zipfile=@public/project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200
|
|
|
|
secrets: [ PAGES_API_KEY ]
|
|
|
|
when:
|
|
- event: manual
|
|
- event: push
|
|
branch: main
|