mirror of
https://codeberg.org/Hyperpipe/pages
synced 2024-12-06 19:16:42 +01:00
14 lines
478 B
YAML
14 lines
478 B
YAML
steps:
|
|
generate:
|
|
image: alpine:latest
|
|
commands:
|
|
- apk add jq git
|
|
- chmod u+x gen.sh && ./gen.sh
|
|
- git remote set-url origin https://$CBTOKEN@codeberg.org/Hyperpipe/pages.git
|
|
- git add .
|
|
- git config user.name "Hyperpipe Bot"; git config user.email "hyperpipe@noreply.codeberg.org"
|
|
- git commit -m "Updated CSV and INSTANCE.md [CI SKIP]"
|
|
- git push origin main
|
|
secrets: [ cbtoken ]
|
|
when:
|
|
event: ['push', 'manual'] |