Skip to content

Commit

Permalink
chore: Update release workflow to skip version determination if next …
Browse files Browse the repository at this point in the history
…version is not provided
  • Loading branch information
HaiyiMei committed Jul 4, 2024
1 parent 9340e26 commit 5d4a45d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- 'src/XRFeitoriaUnreal/*'
- name: Determine next version
if: ${{ !steps.bumpr.outputs.skip }}
if: ${{ !steps.bumpr.outputs.skip }} && ${{ steps.bumpr.outputs.next_version != '' }}
run: |
# Get the next version from the previous step
echo "::group::Get the next version from the previous step"
Expand Down Expand Up @@ -104,5 +104,5 @@ jobs:
echo "::endgroup::"
# - name: suggester / Leave comments on PRs
# if: ${{ !steps.bumpr.outputs.skip }}
# if: ${{ !steps.bumpr.outputs.skip }} && ${{ steps.bumpr.outputs.next_version != '' }}
# uses: reviewdog/action-suggester@v1

0 comments on commit 5d4a45d

Please sign in to comment.