Skip to content

Commit

Permalink
Fixed npm package path and bumped version to v15
Browse files Browse the repository at this point in the history
  • Loading branch information
eydelrivero committed Oct 24, 2022
1 parent cfedeb6 commit 182903a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50475,7 +50475,8 @@ async function run() {
await npmPublish.npmPublish({
token: npm_token,
access: access || 'public',
tag: npmPublishTag || 'latest'
tag: npmPublishTag || 'latest',
package: path
});

const npmRegistyUrl = `https://www.npmjs.com/package/${name}`;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mean-dao-publish",
"version": "14.0.0",
"version": "15.0.0",
"description": "GitHub Action to release and publish packages",
"main": "src/index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ async function run() {
await npmPublish.npmPublish({
token: npm_token,
access: access || 'public',
tag: npmPublishTag || 'latest'
tag: npmPublishTag || 'latest',
package: path
});

const npmRegistyUrl = `https://www.npmjs.com/package/${name}`;
Expand Down

0 comments on commit 182903a

Please sign in to comment.