Skip to content

Commit

Permalink
Update build_fw.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-dvorak authored Feb 16, 2023
1 parent 0d1aeca commit 13c7cbf
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/build_fw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,21 @@ jobs:
with:
path: 'fw/build/'

- uses: EndBug/add-and-commit@v9
with:
message: 'Add build files'
add: 'fw/build/*'
fetch: false
# - uses: EndBug/add-and-commit@v9
# with:
# message: 'Add build files'
# add: 'fw/build/*'
# fetch: false

- name: Get last commit message
id: last-commit-message
run: |
echo "msg=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: ${{ steps.last-commit-message.outputs.msg }}, extended build
file_pattern: 'fw/build/*'
commit_options: '--amend --no-edit'
push_options: '--force'
skip_fetch: false

0 comments on commit 13c7cbf

Please sign in to comment.