Skip to content

Commit 48f7f32

Browse files
fix CI responsibles
1 parent 6a7c4be commit 48f7f32

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI & Release
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77

88
jobs:
99
test:
@@ -44,14 +44,10 @@ jobs:
4444
version=$(grep -m1 '^version =' pyproject.toml | cut -d'"' -f2)
4545
echo "version=$version" >> "$GITHUB_OUTPUT"
4646
47-
- name: Configure Git for pushing tags
47+
- name: Create Git tag
4848
run: |
4949
git config user.name "GitHub Actions"
5050
git config user.email "actions@github.com"
51-
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
52-
53-
- name: Create and push tag
54-
run: |
5551
git tag "v${{ steps.get_version.outputs.version }}"
5652
git push origin "v${{ steps.get_version.outputs.version }}"
5753
@@ -63,3 +59,4 @@ jobs:
6359
generate_release_notes: true
6460
env:
6561
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62+

0 commit comments

Comments
 (0)