1
0
Fork 0

Add library comitter

master
Ambrose Chua 2020-07-03 01:01:19 +08:00
parent 2504d7391d
commit 089874ef6c
1 changed files with 9 additions and 0 deletions

View File

@ -48,6 +48,15 @@ jobs:
run: |
go run update.go -manifest -commit $(git log -1 --format='format:%H' HEAD)
- name: Commit and push changes
if: steps.commit-dockerfiles.outputs.bumped == 'yes'
run: |
git add library/caddy
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
git commit -m "Bump Caddy version" -a
git push
fi
- name: Build on Linux
if: steps.commit-dockerfiles.outputs.bumped == 'yes'
run: |