Bump releases to version v0.15.9-rc.0 #125
Workflow file for this run
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: Auto Generate | |
on: | |
push: | |
branches: | |
- auto-generate/* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
lfs: true | |
- name: Render | |
run: | | |
make update | |
make | |
- name: Push | |
run: | | |
if ! git diff --exit-code; then | |
git config --global user.name "auto-build" | |
git config --global user.email "info@metal-stack.io" | |
git add . | |
git commit -m "Auto generate" | |
git push | |
fi |