Skip to content

Commit

Permalink
Merge pull request #15 from shivjm/fix-release-workflow
Browse files Browse the repository at this point in the history
ci(publish): echo `event.release.name` instead of trying to run it
  • Loading branch information
shivjm authored Nov 1, 2021
2 parents 3defef1 + 9b19cb0 commit 8074f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# it at runtime.

run: |
package=`"${{ github.event.release.name }}" | cut -d ' ' -f 1`
package=`echo "${{ github.event.release.name }}" | cut -d ' ' -f 1`
echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
Expand Down

0 comments on commit 8074f36

Please sign in to comment.