File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Update GPTScript Version
2+ on :
3+ repository_dispatch :
4+ types : release
5+
6+ jobs :
7+ tag-release :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v4
11+ with :
12+ token : ${{ secrets.BOT_GH_TOKEN }}
13+ - name : Bump version and push tag
14+ id : tag_version
15+ uses :
mathieudutour/[email protected] 16+ with :
17+ github_token : ${{ secrets.BOT_GH_TOKEN }}
18+ custom_tag : ${{ github.event.client_payload.tag }}
19+ tag_prefix : " "
20+ - name : Create a GitHub release
21+ uses : ncipollo/release-action@v1
22+ with :
23+ tag : ${{ steps.tag_version.outputs.new_tag }}
24+ name : Release ${{ steps.tag_version.outputs.new_tag }}
25+ body : ${{ steps.tag_version.outputs.changelog }}
26+ prerelease : ${{ contains(steps.tag_version.outputs.new_tag, '-rc') }}
You can’t perform that action at this time.
0 commit comments