Skip to content

Commit

Permalink
Updated release workflow to continue if release tag already exists (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroEsquivel authored Jan 25, 2023
1 parent 46500c5 commit f80a96a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ jobs:
echo 'EOF' >> $GITHUB_ENV
- name: Tag commit
id: push
continue-on-error: true
run: |
git config user.name "CovalentOpsBot"
git config user.email "[email protected]"
Expand All @@ -126,7 +127,6 @@ jobs:
if: >-
inputs.prerelease
&& steps.message.outcome == 'success'
&& steps.push.outcome == 'success'
&& (!github.event.inputs.test_release || github.event.inputs.test_release == 'false')
uses: ncipollo/release-action@v1
with:
Expand All @@ -139,7 +139,6 @@ jobs:
github.event.inputs.stable_version
&& contains(env.PAUL_BLART, github.actor)
&& steps.stable-changelog.outcome == 'success'
&& steps.push.outcome == 'success'
&& (!github.event.inputs.test_release || github.event.inputs.test_release == 'false')
uses: ncipollo/release-action@v1
with:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed stable-changelog action removed `.catch` added `.on('error')`
- Removed AWS base executor deployment from `release.yml`
- Removed experimental tests from nightly test matrix (will be brought back but in different workflow)
- Updated release workflow to continue if release tag already exists

### Removed

Expand Down

0 comments on commit f80a96a

Please sign in to comment.