Skip to content

Commit

Permalink
Fix: release action condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ur-fault committed Sep 24, 2024
1 parent f632fbc commit 21f7240
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 @@ -304,15 +304,15 @@ jobs:


- name: publish cmaze
if: ${{ fromJSON(needs.create-release.outputs.do_smt) == true }}
if: ${{ needs.create-release.outputs.dry_run != 'yes' }}
uses: katyo/publish-crates@v2
with:
path: ./cmaze
registry-token: ${{ secrets.CRATES_IO }}
ignore-unpublished-changes: true

- name: publish tmaze
if: ${{ fromJSON(needs.create-release.outputs.do_smt) == true }}
if: ${{ needs.create-release.outputs.dry_run != 'yes' }}
uses: katyo/publish-crates@v2
with:
path: ./tmaze
Expand Down

0 comments on commit 21f7240

Please sign in to comment.