Skip to content

Commit

Permalink
build: fix equal signs (#2628)
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi authored May 18, 2023
1 parent 7813ec1 commit c11a62a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/trigger-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ jobs:
git config user.email "[email protected]"
- name: Tag beta
if: ${{ github.event.inputs.releaseType === 'beta' }}
if: ${{ github.event.inputs.releaseType == 'beta' }}
run: npm version pre${{ github.event.inputs.releaseType }} --preid=beta

- name: Tag stable
if: ${{ github.event.inputs.releaseType === 'stable' }}
if: ${{ github.event.inputs.releaseType == 'stable' }}
run: npm version ${{ github.event.inputs.releaseType }}

- name: Git push
Expand Down

0 comments on commit c11a62a

Please sign in to comment.