We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47493a4 commit 1f26e69Copy full SHA for 1f26e69
.github/workflows/ci.yml
@@ -32,8 +32,10 @@ jobs:
32
run: |
33
TAG="v1.0.${{ github.run_number }}"
34
echo "tag=$TAG" >> $GITHUB_OUTPUT
35
+ git config user.name "github-actions[bot]"
36
+ git config user.email "github-actions[bot]@users.noreply.github.com"
37
git tag $TAG
- git push origin $TAG
38
+ git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git $TAG
39
40
- name: Create Release
41
uses: softprops/action-gh-release@v1
0 commit comments