Skip to content

Commit d11ebf8

Browse files
committed
Fix typo in npm version <v> step
Whoops... accidentally forgot a space when I switched from preId input to harcoded "beta" preId. Should work now.
1 parent f3a97ab commit d11ebf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ jobs:
5151
git config --global user.name "${{ github.actor }}"
5252
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
5353
- name: npm version ${{ inputs.version }}
54-
run: echo "version=$(npm version ${{ inputs.version }}${{ startsWith(inputs.version, 'pre') && '--preid beta' || '' }})" >> "$GITHUB_ENV"
54+
run: echo "version=$(npm version ${{ inputs.version }}${{ startsWith(inputs.version, 'pre') && ' --preid beta' || '' }})" >> "$GITHUB_ENV"
5555
- name: git push
5656
run: git push && git push origin ${{ env.version }}

0 commit comments

Comments
 (0)