From f80a96aedc7798502ce1baea7657260d3bae4a52 Mon Sep 17 00:00:00 2001 From: Alejandro Esquivel Date: Tue, 24 Jan 2023 16:26:55 -0800 Subject: [PATCH] Updated release workflow to continue if release tag already exists (#1498) --- .github/workflows/release.yml | 3 +-- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d0425a43..d7265c07d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 "covalentopsbot@users.noreply.github.com" @@ -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: @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index 563a58148..31a3947d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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