Skip to content

Commit

Permalink
github-actions :: provide RELEASE_VERSION to slack-notify-complete (#716
Browse files Browse the repository at this point in the history
)

* github-actions :: provide RELEASE_VERSION to slack-notify-complete

* Update maven-release.yml
  • Loading branch information
jpdahlke authored Mar 13, 2024
1 parent 5b3ff6f commit 16bde0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add RELEASE_VERSION to environment variable
run: echo "RELEASE_VERSION=${{ env.RELEASE_VERSION }}" >> "$GITHUB_ENV"
run: echo "RELEASE_VERSION=${{ needs.get_version.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"

- name: Publish to slack channel via bot token
id: slack
Expand All @@ -227,7 +227,7 @@ jobs:
"type": "section",
"text": {
"type": "mrkdwn",
"text": "emissary-release -- Release of version: ${{ env.RELEASE_VERSION }} complete.\nRelease Page: <https://github.com/NationalSecurityAgency/emissary/releases/tag/${{ env.RELEASE_VERSION }}|${{ env.RELEASE_VERSION }}>"
"text": "emissary-release -- Release of version: ${{ env.RELEASE_VERSION }} complete.\nRelease Page: <https://github.com/NationalSecurityAgency/emissary/releases/tag/${{ env.RELEASE_VERSION }}>"
}
}
]
Expand Down

0 comments on commit 16bde0b

Please sign in to comment.