From 18a80912359b6fedd6f763dd2ce8e2415efbdbae Mon Sep 17 00:00:00 2001 From: Opender Singh Date: Mon, 4 Oct 2021 17:42:14 +1300 Subject: [PATCH] this should create a release because I deleted the existing one --- .github/workflows/release-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-core.yml b/.github/workflows/release-core.yml index e4eb53367a..0007f22bcb 100644 --- a/.github/workflows/release-core.yml +++ b/.github/workflows/release-core.yml @@ -77,13 +77,13 @@ jobs: id: get-tag run: echo "::set-output name=tag-name::lib@${{ steps.get-package-version.outputs.current-version }}" - name: Find release by tag + # Finding a release by a particular tag will throw an error and fail if a release doesn't exist continue-on-error: true id: find-release uses: kaliber5/action-get-release@v1 with: token: ${{ github.token }} tag_name: ${{ steps.get-tag.outputs.tag-name }} - # Finding a release by a particular tag will throw an error and fail if a release doesn't exist - name: Check release exists id: check-release run: echo "::set-output name=should-create-release::${{ steps.find-release.outcome == 'failure' }}"