Skip to content

Commit

Permalink
Allow same version
Browse files Browse the repository at this point in the history
  • Loading branch information
janbuchar committed Oct 23, 2024
1 parent 4d46225 commit 4ca64fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
node-version: 22

- name: Update package version in package.json
run: npm version --no-git-tag-version ${{ needs.release_metadata.outputs.version_number }}
run: npm version --no-git-tag-version --allow-same-version ${{ needs.release_metadata.outputs.version_number }}

- name: Update CHANGELOG.md
uses: DamianReeves/write-file-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
node-version: 22

- name: Update package version in package.json
run: npm version --no-git-tag-version ${{ needs.release_metadata.outputs.version_number }}
run: npm version --no-git-tag-version --allow-same-version ${{ needs.release_metadata.outputs.version_number }}

- name: Update CHANGELOG.md
uses: DamianReeves/write-file-action@master
Expand Down

0 comments on commit 4ca64fe

Please sign in to comment.