Skip to content

Commit

Permalink
fix cwd
Browse files Browse the repository at this point in the history
  • Loading branch information
mucsi96 committed Mar 17, 2024
1 parent ab23a3b commit c2695ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npm_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def publish_npm_package(
file.write(f'registry=https://registry.npmjs.org')

run(['npm', 'publish'], env={
'NODE_AUTH_TOKEN': npm_access_token}, check=True)
'NODE_AUTH_TOKEN': npm_access_token}, cwd=src, check=True)

create_release(
tag_prefix=tag_prefix,
Expand Down

0 comments on commit c2695ab

Please sign in to comment.