Skip to content

Commit

Permalink
Fixed bug with path param
Browse files Browse the repository at this point in the history
  • Loading branch information
eydelrivero committed Oct 26, 2022
1 parent b0fe1f3 commit 605ea61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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": "16.0.0",
"version": "17.0.0",
"description": "GitHub Action to release and publish packages",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function run() {
const gchat_webhook = core.getInput('gchat_webhook');
const npm_token = core.getInput('npm_token');
const access = core.getInput('access');
const path = core.getInput('path');
let path = core.getInput('path');
const octokit = github.getOctokit(github_token);

if (!path || path === '') {
Expand Down

0 comments on commit 605ea61

Please sign in to comment.