Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/announce.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
steps:
- name: Get tag
id: get_tag
run: echo "{TAG}=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
- name: Get version
id: get_version
run: echo "{VERSION}=${TAG##v}" >> $GITHUB_OUTPUT
run: echo "VERSION=${TAG##v}" >> $GITHUB_OUTPUT
env:
TAG: ${{ steps.get_tag.outputs.TAG }}
- name: Prepare message
id: get_message
run: echo "{MSG}=${{ secrets.SLACK_MESSAGE }}" >> $GITHUB_OUTPUT
run: echo "MSG=${{ secrets.SLACK_MESSAGE }}" >> $GITHUB_OUTPUT
env:
VERSION: ${{ steps.get_version.outputs.VERSION }}
TAG: ${{ steps.get_tag.outputs.TAG }}
Expand Down
Loading