Skip to content

Commit

Permalink
chore: fix dry_run inputs in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrinkman committed Oct 24, 2023
1 parent 3b1d669 commit 89b2073
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 @@ -39,10 +39,10 @@ jobs:
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ ! dry_run }}
if: ${{ ! inputs.dry_run }}
run: npx semantic-release
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ dry_run }}
if: ${{ inputs.dry_run }}
run: npx semantic-release --dry-run

0 comments on commit 89b2073

Please sign in to comment.