Skip to content

Commit

Permalink
Maybe don't double-commit Windows DLL's
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed May 23, 2024
1 parent f402260 commit e83a844
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/opus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ jobs:
- name: Build on ${{ matrix.config.name }}
shell: bash
run: |
git config --global core.filemode false
git clone https://gitlab.xiph.org/xiph/opus libs/opus
cd libs/opus
OPUS_VERSION=$(git describe --tags $(git rev-list --tags --max-count=1))
Expand All @@ -174,7 +175,8 @@ jobs:
uses: EndBug/add-and-commit@v9
with:
add: "libs/libopus/"
commit: "--renormalize"
default_author: github_actions
message: Update ${{ matrix.config.file }} to ${{ env.OPUS_VERSION }}
pull: '--rebase --autostash'
message: Update ${{ matrix.config.file }} to ${{ env.SODIUM_VERSION }}
pull: "--rebase --autostash"
push: true
4 changes: 3 additions & 1 deletion .github/workflows/sodium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ jobs:
shell: bash
continue-on-error: true
run: |
git config --global core.filemode false
git clone https://github.com/jedisct1/libsodium.git libs/sodium
cd libs/sodium
git fetch --tags
Expand All @@ -152,7 +153,8 @@ jobs:
uses: EndBug/add-and-commit@v9
with:
add: "libs/libsodium/"
commit: "--renormalize"
default_author: github_actions
message: Update ${{ matrix.config.file }} to ${{ env.SODIUM_VERSION }}
pull: '--rebase --autostash'
pull: "--rebase --autostash"
push: true

0 comments on commit e83a844

Please sign in to comment.