mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-22 04:32:16 -05:00
parent
807979d23c
commit
d21b7b4006
1 changed files with 9 additions and 13 deletions
22
.github/workflows/deploy-RELEASE.yml
vendored
22
.github/workflows/deploy-RELEASE.yml
vendored
|
@ -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 #
|
||||
|
|
Loading…
Reference in a new issue