diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84dba4f05..bbab8c822 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,12 +142,17 @@ jobs: COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }} notify: - uses: Checkmarx/plugins-release-workflow/.github/workflows/release-notify.yml@main - with: - product_name: CLI - release_version: ${{ inputs.tag }} - cli_release_version: "" - release_author: "Phoenix Team" - release_url: https://github.com/Checkmarx/ast-cli/releases/tag/${{ inputs.tag }} - secrets: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + runs-on: ubuntu-latest + if: inputs.dev == false + steps: + - name: Send a Notification + id: notify + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: Checkmarx/plugins-release-workflow/.github/workflows/release-notify.yml@main + with: + product_name: CLI + release_version: ${{ inputs.tag }} + cli_release_version: "" + release_author: "Phoenix Team" + release_url: https://github.com/Checkmarx/ast-cli/releases/tag/${{ inputs.tag }}