take 3
ci/woodpecker/push/woodpecker Pipeline failed Details

master
Drake 2 years ago
parent c42aa51615
commit b078668854

@ -9,10 +9,16 @@ pipeline:
when: when:
event: [ pull_request, push ] event: [ pull_request, push ]
publish: publish:
image: plugins/git-push image: bitnami/git
secrets: [ ssh_key ] secrets: [ access_token ]
settings: commands:
path: ./dist - git config --global user.name "BotUser"
remote: ssh://git@git.ruthenic.com:2200/Demon/demoncord-builds.git - git config --global user.email "awaynian.trow@gmail.com"
commit: true - git config --global user.password $access_token
commit_message: "Update build" - mkdir /tmp/build
- cp dist/build.js /tmp/build
- cd /tmp/build
- git init .
- git remote add origin https://git.ruthenic.com/Demon/demoncord-builds.git
- git commit -am "Update build"
- git push --force

Loading…
Cancel
Save