From e83a844d0a82a36fc153a9073e7e0d5d3ff75cad Mon Sep 17 00:00:00 2001 From: Lunar Starstrum Date: Thu, 23 May 2024 00:52:05 -0500 Subject: [PATCH] Maybe don't double-commit Windows DLL's --- .github/workflows/opus.yml | 6 ++++-- .github/workflows/sodium.yml | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/opus.yml b/.github/workflows/opus.yml index 3cd4954..bce707b 100644 --- a/.github/workflows/opus.yml +++ b/.github/workflows/opus.yml @@ -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)) @@ -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 \ No newline at end of file diff --git a/.github/workflows/sodium.yml b/.github/workflows/sodium.yml index 613f0b7..c7168fb 100644 --- a/.github/workflows/sodium.yml +++ b/.github/workflows/sodium.yml @@ -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 @@ -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 \ No newline at end of file