Skip to content

Commit

Permalink
Merge pull request #184 from tkrs/replace-commit-and-tag-version
Browse files Browse the repository at this point in the history
ci(deps): replace standard-version with commit-and-tag-version
  • Loading branch information
tkrs committed Jan 7, 2024
2 parents 91deeca + ac7bfd5 commit 0926a9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
target: x86_64-unknown-linux-gnu
- name: Setup Node.js
uses: actions/setup-node@v4
- run: sudo npm install -g standard-version
- run: sudo npm install -g commit-and-tag-version
- name: Determine tag and generate release body
run: standard-version --infile RELEASE_BODY.md --skip.commit
run: commit-and-tag-version --infile RELEASE_BODY.md --skip.commit
- name: Generate release context
id: release_context
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
git config user.name "Takeru Sato"
- name: Setup Node.js
uses: actions/setup-node@v4
- run: sudo npm install -g standard-version
- run: sudo npm install -g commit-and-tag-version
- name: Create tag
run: standard-version --skip.changelog --skip.commit
run: commit-and-tag-version --skip.changelog --skip.commit
- name: Publish tag
run: git push --follow-tags

0 comments on commit 0926a9f

Please sign in to comment.