Skip to content

Commit af48e70

Browse files
authored
Debug create-tag.yml (#8)
1 parent 3260dbd commit af48e70

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/create-tag.yml

+4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ jobs:
1414
contents: write
1515
steps:
1616
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: "0"
1719

1820
- name: Create and push tag
1921
run: |
22+
git config --global user.name "Pyodide CI"
23+
git config --global user.email "[email protected]"
2024
TAG_NAME=$(date +'%Y%m%d')
2125
git tag $TAG_NAME
2226
git push origin $TAG_NAME

0 commit comments

Comments
 (0)