Skip to content

Commit

Permalink
chore: don't create any resources on prerelease (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmandM authored May 15, 2024
1 parent 3a39e26 commit 8bfc986
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
if [[ ${{ inputs.prerelease }} ]]; then
new_version=$(npm version --preid=rc pre${{ inputs.semver_type }})
new_version=$(npm version ${{ inputs.semver_type }} --no-commit-hooks --no-git-tag-version )
else
new_version=$(npm version ${{ inputs.semver_type }} )
fi
Expand Down
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": "ts-mock-imports",
"version": "1.3.15-rc.0",
"version": "1.3.15",
"description": "Intuitive mocking for Typescript class imports",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 8bfc986

Please sign in to comment.