Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mistricky committed Mar 13, 2024
1 parent 900151b commit 4101022
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,21 @@ jobs:
run: cp generator/target/${{ matrix.platform.target }}/release/libgenerator.${{ matrix.platform.origin_dylib_suffix }} lua/${{ matrix.platform.os_name }}generator.${{ matrix.platform.dest_dylib_suffix }}

- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
uses: EndBug/add-and-commit@v7
with:
commit_message: "[Update] build FFI dynamic library"
push_options: '--force'
skip_dirty_check: true
skip_fetch: true
message: '[Update] files based on generated files by template generator'
pull_strategy: 'NO-PULL'
push: false

- name: Push changes
run: |
git pull --rebase
git push
# - name: Commit changes
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# commit_message: "[Update] build FFI dynamic library"
# skip_dirty_check: true
# skip_fetch: true

0 comments on commit 4101022

Please sign in to comment.