Update main.yml

This commit is contained in:
Stephan Mühl
2023-03-23 22:06:59 +01:00
committed by GitHub
parent f93ab028a6
commit e590e22923

View File

@@ -107,3 +107,16 @@ jobs:
asset_path: ./firmware/firmware.bin
asset_name: firmware.bin
asset_content_type: application/octet-stream
- name: Commit files # commit the output folder
run: |
git config --local user.email "github@blueforcer.de"
git config --local user.name "AWTRIX Bot"
git add version
git commit -m "Update version & flasher"
- name: Push changes # push the output folder to your repo
uses: ad-m/github-push-action@master
with:
branch: main #ignore if your branch is master
github_token: ${{ secrets.GITHUB_TOKEN }}
force: true