Skip to content

Commit

Permalink
.github/workflows: fix syntax error in release yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ronenlu committed Sep 14, 2023
1 parent 2850f2e commit 312ceba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ jobs:
env:
RELEASE_VERSION: ${{ steps.set_version.outputs.tag }}
run: |
# print the version to be released
echo "RELEASE_VERSION=$RELEASE_VERSION"
npm version $RELEASE_VERSION
- name: publish the npm package
uses: JS-DevTools/npm-publish@v2
with:
package: ./${{ matrix.language }}
token: ${{ secrets.NPM_TOKEN }
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit 312ceba

Please sign in to comment.