Skip to content

Commit

Permalink
fix: correct syntax error in npm_dependency_publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrodzilla committed Jul 24, 2024
1 parent 6c0b5ef commit 1cedc69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/npm_dependency_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
# Custom package.json
echo '{"name": "@govcraft/${{ inputs.name }}", "version": "${{ inputs.version }}", "os": ["${{ inputs.os }}"], "cpu": ["${{ inputs.cpu }}"]}', "author": {"name": "Govcraft", "email": "roland@govcraft.ai"}} | jq . > package.json
echo '{"name": "@govcraft/${{ inputs.name }}", "version": "${{ inputs.version }}", "os": ["${{ inputs.os }}"], "cpu": ["${{ inputs.cpu }}"], "author": {"name": "Govcraft", "email": "roland@govcraft.ai"}}' | jq . > package.json
# Publish the package
npm publish --access public
Expand Down

0 comments on commit 1cedc69

Please sign in to comment.