Skip to content

Commit

Permalink
fix: Fixes package name for docker publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi committed Jan 5, 2018
1 parent 28868a2 commit d01aef5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/public-circleci-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ release({
"@semantic-release/npm",
{
"path": "semantic-release-docker",
"name": package.name
"name": package.name.replace(/@/g, ''),
}
]
});
2 changes: 1 addition & 1 deletion scripts/public-travisci-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ release({
"@semantic-release/npm",
{
"path": "semantic-release-docker",
"name": package.name
"name": package.name.replace(/@/g, ''),
}
]
});

0 comments on commit d01aef5

Please sign in to comment.