mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 08:13:14 +00:00
no log: trying again to fix git issue in release pipelines.
This commit is contained in:
parent
1c2d080b02
commit
897d90e96a
2 changed files with 4 additions and 4 deletions
4
.github/workflows/release_beta_to_dev.yaml
vendored
4
.github/workflows/release_beta_to_dev.yaml
vendored
|
@ -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... ****"
|
||||
|
|
4
.github/workflows/release_dev_to_master.yaml
vendored
4
.github/workflows/release_dev_to_master.yaml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue