We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b030d commit 4dad6adCopy full SHA for 4dad6ad
.github/workflows/release.pr.merge.yml
@@ -51,3 +51,17 @@ jobs:
51
- name: Push Changes and Tags
52
run: |
53
git push origin HEAD:release --tags
54
+
55
+ - name: "Create Release"
56
+ env:
57
+ GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }}
58
+ run: |
59
+ curl --request POST \
60
+ --url https://api.github.com/repos/${{ github.repository }}/releases \
61
+ --header "Authorization: Bearer $GITHUB_TOKEN" \
62
+ --header 'Content-Type: application/json' \
63
+ --data "{
64
+ \"tag_name\": \"$PR_VERSION\",
65
+ \"name\": \"Release $PR_VERSION\",
66
+ \"body\": \"Release notes for version v$PR_VERSION\"
67
+ }"
0 commit comments