Add deployment pipeline step
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
caef031d48
commit
11af123adf
@ -6,11 +6,17 @@ steps:
|
||||
- npm install -D tailwindcss @tailwindcss/typography
|
||||
- npx tailwindcss -i input.css -o static/css/index.css --minify
|
||||
- zola build
|
||||
# deploy:
|
||||
# image: codeberg.org/xfix/plugin-codeberg-pages-deploy:1
|
||||
# settings:
|
||||
# folder: public
|
||||
# branch: pages
|
||||
# ssh_key:
|
||||
# from_secret: ssh_key
|
||||
# git_config_name: "polynom.me CI system"
|
||||
- ls -l
|
||||
deploy:
|
||||
image: alpine:3.19
|
||||
secrets: [ git_push_token ]
|
||||
commands:
|
||||
- apk add --no-cache git
|
||||
- git config --global user.email "ci@polynom.me"
|
||||
- git config --global user.name "polynom.me CI system"
|
||||
- git config --global --add safe.directory $CI_WORKSPACE/$CI_REPO_OWNER/$CI_REPO_NAME/deploy
|
||||
- git init -b pages public
|
||||
- cd public
|
||||
- git add --all
|
||||
- git commit -m "Deploy new version $CI_COMMIT_SHA"
|
||||
- git push -u https://$GIT_PUSH_TOKEN@git.polynom.me/$CI_REPO_OWNER/$CI_REPO_NAME.git -f pages
|
Loading…
Reference in New Issue
Block a user