Skip to content

Commit

Permalink
HOTFIX: Fix release workflow to prevent false fail when build is skip…
Browse files Browse the repository at this point in the history
…ped.
  • Loading branch information
RadWolfie authored Jun 7, 2024
1 parent e297d3c commit 8552321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ jobs:
merge:
name: Merge Artifacts
runs-on: ubuntu-latest
needs: build
if: ${{ !cancelled() }}
needs: [semver, build]
if: ${{ !cancelled() && needs.semver.outputs.do-build == 'true' }}
steps:
- uses: actions/upload-artifact/merge@v4
with:
Expand Down

0 comments on commit 8552321

Please sign in to comment.