Skip to content

Commit 853df71

Browse files
committed
fix: update GitHub Actions tag push command to use personal access token
1 parent 6ef02f3 commit 853df71

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/version-check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
TAG_NAME="v${{ env.VERSION }}"
8686
echo "Creating new tag: $TAG_NAME"
8787
git tag $TAG_NAME
88-
git push origin $TAG_NAME
88+
git push https://${{ secrets.PAT_GITHUB }}@github.com/${{ github.repository }} $TAG_NAME
8989
9090
- name: Create Release
9191
if: env.NEW_RELEASE == 'true'

coverage.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<coverage version="7.6.12" timestamp="1741741391345" lines-valid="1255" lines-covered="72" line-rate="0.05737" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
2+
<coverage version="7.6.12" timestamp="1741741451266" lines-valid="1255" lines-covered="72" line-rate="0.05737" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
33
<!-- Generated by coverage.py: https://coverage.readthedocs.io/en/7.6.12 -->
44
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
55
<sources>

0 commit comments

Comments
 (0)