From 87be62ee0f60d804c475eeaf51467490410440db Mon Sep 17 00:00:00 2001 From: lukasz-jarocki-sonarsource Date: Fri, 8 Nov 2024 14:19:20 +0100 Subject: [PATCH] SONAR-23578 Add release.yml --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release.yml 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 -- 2.39.5