Skip to content

Commit

Permalink
release action: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
basecode committed Nov 10, 2020
1 parent 5323a77 commit 0da4ade
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,8 +39,8 @@ jobs:
- name: Extract name and version from package.json
id: packageJson
run: |
echo ::set-output name=NAME::$(echo '"${{ steps.package.outputs.content }}"' | jq -r '.name')
echo ::set-output name=VERSION::$(echo '"${{ steps.package.outputs.content }}"' | jq -r '.version')
echo ::set-output name=NAME::$(echo '${{ steps.package.outputs.content }}' | jq -r '.name')
echo ::set-output name=VERSION::$(echo '${{ steps.package.outputs.content }}' | jq -r '.version')
- name: Create Release
id: create_release
Expand Down

0 comments on commit 0da4ade

Please sign in to comment.