diff options
author | Malena Ebert <63863184+malena-ebert-sonarsource@users.noreply.github.com> | 2021-04-29 10:33:10 +0200 |
---|---|---|
committer | Wouter Admiraal <45544358+wouter-admiraal-sonarsource@users.noreply.github.com> | 2021-04-29 11:10:42 +0200 |
commit | c6a96bda841298afddd4c3766dd2fb78d7459275 (patch) | |
tree | 8eb7082efe5dd3b7a3690f3fd909e52a868d123c /.github | |
parent | 14c890a5668ec99d7a501a7550c9d7000e2f52cb (diff) | |
download | sonar-scanner-cli-c6a96bda841298afddd4c3766dd2fb78d7459275.tar.gz sonar-scanner-cli-c6a96bda841298afddd4c3766dd2fb78d7459275.zip |
BUILD Switch to maintained release action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69c76c6..0a52753 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,16 +47,15 @@ jobs: args: "Release successful for {{ GITHUB_REPOSITORY }} by {{ GITHUB_ACTOR }}" - name: Create Release for Docker Image id: create_release - uses: actions/create-release@v1 + uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }} + GITHUB_REPOSITORY: SonarSource/sonar-scanner-cli-docker with: tag_name: ${{ github.event.release.tag_name }} - release_name: ${{ github.event.release.tag_name }} body: Release containing ScannerCLI version ${{ github.event.release.tag_name }} draft: false prerelease: false - repo: SonarSource/sonar-scanner-cli-docker - name: Notify failures on Slack uses: Ilshidur/action-slack@2.0.0 if: failure() |