Skip to content

Commit

Permalink
Fix release conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Oct 26, 2024
1 parent 885d608 commit 7a4a93a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,9 @@ jobs:
release:
runs-on: windows-latest
needs: [build-windows, build-macos]
if: needs.check-release-requirement.outputs['release-check.needs-release'] == 'True'
if: needs.check-release-requirement.outputs.needs-release == 'True'
steps:
- name: Tag With SemVer
if: steps.release-check.outputs.needs-release == 'True'
run: |
git tag "v${{ env.GitVersion_SemVer }}"
git push --tags
Expand Down

0 comments on commit 7a4a93a

Please sign in to comment.