diff options
author | morpheus65535 <[email protected]> | 2023-07-23 10:21:31 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-07-23 10:21:31 -0400 |
commit | 4e50dc29a4765881a2d53c099a4befb1c4c16f1e (patch) | |
tree | 9c60be6012ef81732c75b4df86c8a20be4c2d2cf /.github | |
parent | 897d90e96a13ee96bf24852ecab72a8f14481bc7 (diff) | |
download | bazarr-4e50dc29a4765881a2d53c099a4befb1c4c16f1e.tar.gz bazarr-4e50dc29a4765881a2d53c099a4befb1c4c16f1e.zip |
no log: trying again to fix git issue in release pipelines.v1.2.5-beta.0
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/release_dev_to_master.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index ea0c501b0..ac0f7ec32 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -63,8 +63,8 @@ jobs: - name: Create Release (Conditional) if: ${{ steps.check-ci.outputs.conclusion == 'success' }} run: | - git config user.name "${{GITHUB_ACTOR}}" - git config user.email "${{GITHUB_ACTOR}}@users.noreply.github.com" + git config user.name "${{github.actor}}" + git config user.email "${{github.actor}}@users.noreply.github.com" revision_count=$(git rev-list --invert-grep --regexp-ignore-case --extended-regexp --grep="^(Release|no log:|Merge.remote-tracking).*" $(git describe --tags --abbrev=0)..HEAD --count) if [[ $revision_count != 0 ]]; then echo "**** Found $revision_count changes! Releasing... ****" diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index 91bd102c0..79dd17cd1 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -55,8 +55,8 @@ jobs: - name: Create Release run: | - git config user.name "${{GITHUB_ACTOR}}" - git config user.email "${{GITHUB_ACTOR}}@users.noreply.github.com" + git config user.name "${{github.actor}}" + git config user.email "${{github.actor}}@users.noreply.github.com" export RELEASE_MASTER=1 release-it --ci --increment ${{ github.event.inputs.increment }} Merge: |