diff options
author | lukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com> | 2024-11-08 14:19:20 +0100 |
---|---|---|
committer | lukasz-jarocki-sonarsource <lukasz.jarocki@sonarsource.com> | 2024-11-08 14:46:24 +0100 |
commit | 87be62ee0f60d804c475eeaf51467490410440db (patch) | |
tree | 905ee630ba8a564b7213fb09b923c93df7217ea4 | |
parent | 540abf1c8339006b9235a2e335320e464854a6dc (diff) | |
download | sonarqube-lj/testing-release.tar.gz sonarqube-lj/testing-release.zip |
SONAR-23578 Add release.ymllj/testing-release
-rw-r--r-- | .github/workflows/release.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000000..b732fb4fafc --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Release +# This workflow is triggered when publishing a GitHub release +# yamllint disable-line rule:truthy +on: + release: + types: + - published + +jobs: + release: + permissions: + id-token: write + contents: write + uses: SonarSource/gh-action_release/.github/workflows/main.yaml@v5 + with: + slackChannel: squad-sq-platform-build-notification + publishToBinaries: true + mavenCentralSync: true + dryRun: true |