1
0
Fork 0
caddy/.github/workflows/regenerate_stackbrew.yml

34 lines
736 B
YAML
Raw Normal View History

2020-05-13 14:21:13 +08:00
name: Generate stackbrew library
on:
push:
branches:
- master
paths:
- '*/Dockerfile'
jobs:
regenerate_stackbrew:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.PUSH_GITHUB_TOKEN }}
2020-05-13 14:21:13 +08:00
- name: Regenerate stackbrew library
run: make library/caddy
- name: Configure git
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Commit and push changes
run: |
2020-05-13 14:26:35 +08:00
git add library/caddy
2020-05-13 14:21:13 +08:00
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
git commit -m 'Regenerate stackbrew library'
git push
fi