Skip to content

Commit

Permalink
Merge pull request #435 from rvermeulen/rvermeulen/address-failing-re…
Browse files Browse the repository at this point in the history
…lease-view

Address failing gh release view with subshell
  • Loading branch information
rvermeulen authored Nov 17, 2023
2 parents e0193ac + 579e425 commit 7013520
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
# Don't fail the step if gh fails to find the release
set +e
release=$(gh release view v$RELEASE_VERSION --json name,isDraft)
release=$( { gh release view "v$RELEASE_VERSION" --json name,isDraft; } || echo "" )
if [[ -z "$release" ]]; then
echo "Release v$RELEASE_VERSION does not exist. Proceeding"
echo "create_draft_release=true" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 7013520

Please sign in to comment.