ci: avoid mutating repository on semantic-release version command

This commit is contained in:
Rémi Alvergnat
2023-12-14 09:20:12 +01:00
parent ee9bcbc288
commit e8273ca10d
+4 -4
View File
@@ -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 }}
@@ -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 }}
@@ -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 }}
@@ -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 }}