From 06c3c568f3b0637fd2ce6fce916e9e30403e22f9 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Tue, 21 Dec 2021 16:32:49 +1300 Subject: [PATCH] Allow create-release to fail (if already exists) --- .github/workflows/bump-version.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 7a99f8f..47d2134 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -30,6 +30,7 @@ jobs: - if: ${{ contains(github.event.inputs.version, 'b') }} name: Create Beta Release uses: actions/create-release@v1 + continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -41,6 +42,7 @@ jobs: - if: ${{ !contains(github.event.inputs.version, 'b') }} name: Create Stable Release uses: actions/create-release@v1 + continue-on-error: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: