Browse Source

BUILD Switch to maintained release action

tags/4.6.2.2472
Malena Ebert 3 years ago
parent
commit
c6a96bda84
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      .github/workflows/release.yml

+ 2
- 3
.github/workflows/release.yml View File

@@ -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()

Loading…
Cancel
Save