diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c7faae0..b9b1291 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -69,12 +69,14 @@ jobs: - name: Check for changes run: | + cd upm git diff --quiet continue-on-error: true - name: Commit update if: ${{ success() }} run: | + cd upm git config user.name github-actions git config user.email github-actions@github.com git add X10D.dll diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 9251212..c659f3c 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -75,12 +75,14 @@ jobs: - name: Check for changes run: | + cd upm git diff --quiet continue-on-error: true - name: Commit update if: ${{ success() }} run: | + cd upm git config user.name github-actions git config user.email github-actions@github.com git add X10D.dll diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6bdeeff..49fbc0d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,12 +75,14 @@ jobs: - name: Check for changes run: | + cd upm git diff --quiet continue-on-error: true - name: Commit update if: ${{ success() }} run: | + cd upm git config user.name github-actions git config user.email github-actions@github.com git add X10D.dll