Version update check and release #30726
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Version update check and release | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
workflow_dispatch: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
id: checkout | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.ACTION_TOKEN }} | |
- name: Run a multi-line script | |
id: build | |
run: | | |
git config --local user.email "github-actions[bot]@haproxy.com" | |
git config --local user.name "github-actions[bot]" | |
./build.sh |