Skip to content

Commit

Permalink
ci: avoid mutating repository on semantic-release version command
Browse files Browse the repository at this point in the history
  • Loading branch information
Toilal committed Dec 14, 2023
1 parent ee9bcbc commit e8273ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release version
run: semantic-release version --no-commit --no-tag --no-push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release version
run: semantic-release version --no-commit --no-tag --no-push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release version
run: semantic-release version --no-commit --no-tag --no-push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release version
run: semantic-release version --no-commit --no-tag --no-push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit e8273ca

Please sign in to comment.