* change it up

* change it up
This commit is contained in:
Lukas Gravley 2021-03-11 13:24:12 -06:00 committed by GitHub
parent 807979d23c
commit d21b7b4006
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,19 +206,15 @@ jobs:
- name: Create Release
if: success()
id: create_release
uses: actions/create-release@v1
env:
# This token is provided by Actions,
# you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commitish: ${{ env.PR_REF }}
tag_name: ${{ env.RELEASE_VERSION }}
release_name: Release ${{ env.RELEASE_VERSION }}
body: |
${{ github.event.issue.body }}
draft: false
prerelease: false
run: |
curl -X POST \
--url https://api.github.com/repos/${{ github.repository }}/releases \
-H 'Accept: application/vnd.github.v3+json' \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H 'Content-Type: application/json' \
--data "{ \"tag_name\": \"${{ env.RELEASE_VERSION }}\", \"target_commitish\": \"${{ env.PR_REF }}\", \
\"name\": \"Release ${{ env.RELEASE_VERSION }}\", \"draft\": false, \"prerelease\": false, \
\"repository_action_release_attributes\": { \"published_on_marketplace\": true }}"
#####################################################
# Create the Required status check for Stack Linter #