Skip to content

Commit

Permalink
Fix tag name variable in post-release.yml. (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmalouf authored Mar 7, 2025
1 parent cb367d3 commit 3f0b08d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
id: slack-changelog
uses: slackapi/slack-github-action@v1.27.1
env:
RELEASE_TAG: ${{ steps.set-release.outputs.release-tag }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
uses: slackapi/slack-github-action@v1.27.1
env:
SDK: ${{ github.event.repository.name }}
RELEASE_TAG: ${{ steps.set-release.outputs.release-tag }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_RELEASE_NOTIFICATIONS_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
with:
Expand Down

0 comments on commit 3f0b08d

Please sign in to comment.