File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 77 types :
88 - closed
99
10+ permissions :
11+ contents : write
12+
1013jobs :
1114 build-and-package :
1215 runs-on : ubuntu-latest
1720 steps :
1821 - name : Check out code
1922 uses : actions/checkout@v4
23+ with :
24+ persist-credentials : true
2025
2126 - name : Set up JDK 17 from GraalVM
2227 run : |
3641 run : echo "::set-output name=tag::$(date +'%Y%m%dT%H%M%S')"
3742
3843 - name : Create Git Tag
39- run : git tag ${{ steps.newtag.outputs.tag }} && git push origin ${{ steps.newtag.outputs.tag }}
44+ run : |
45+ git config --global user.name 'GitHub Actions'
46+ git config --global user.email 'actions@github.com'
47+ git tag ${{ steps.newtag.outputs.tag }}
48+ git push origin ${{ steps.newtag.outputs.tag }}
4049
4150 - name : Publish Release
4251 uses : softprops/action-gh-release@v1
You can’t perform that action at this time.
0 commit comments