Skip to content

Commit

Permalink
ci: Fix check for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
WIStudent committed Apr 3, 2024
1 parent 95a409b commit 2c01616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-for-new-deno-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
latest_deno_version=$(gh release view --repo denoland/deno --json tagName --jq ".tagName")
echo "latest-deno-version=$latest_deno_version" >> "$GITHUB_OUTPUT"
version_in_this_repo=$(gh release view $latest_deno_version --repo ${{ github.repository }} --json tagName --jq ".tagName")
version_in_this_repo=$(gh release view $latest_deno_version --repo ${{ github.repository }} --json tagName --jq ".tagName" || true)
if [[ "${latest_deno_version}" == "${version_in_this_repo}" ]]
then
echo "release-status=exists" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 2c01616

Please sign in to comment.