Skip to content

Commit

Permalink
fix: checkout package.json path
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvaro Jose committed Aug 14, 2023
1 parent 1eba356 commit 22d66d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/merge-release-run.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const run = async () => {
} else {
exec(`npm publish --access=${access}`, deployDir)
}
exec(`git checkout package.json`) // cleanup
exec(`git checkout ${path.join(deployDir, 'package.json')}`) // cleanup
exec(`git tag ${newVersion}`)
exec(`echo "version=${newVersion}" >> $GITHUB_OUTPUT`)

Expand Down

0 comments on commit 22d66d3

Please sign in to comment.