From 303617a888eda186d2749c69e49d109d03d5ea56 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 2 Apr 2023 19:59:17 +0100 Subject: [PATCH] [ci skip] ci: cd upm for each successive step --- .github/workflows/nightly.yml | 2 ++ .github/workflows/prerelease.yml | 2 ++ .github/workflows/release.yml | 2 ++ 3 files changed, 6 insertions(+) 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