We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 410bdbd commit b168cbbCopy full SHA for b168cbb
.github/workflows/announce.yaml
@@ -10,15 +10,15 @@ jobs:
10
steps:
11
- name: Get tag
12
id: get_tag
13
- run: echo "{TAG}=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
+ run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
14
- name: Get version
15
id: get_version
16
- run: echo "{VERSION}=${TAG##v}" >> $GITHUB_OUTPUT
+ run: echo "VERSION=${TAG##v}" >> $GITHUB_OUTPUT
17
env:
18
TAG: ${{ steps.get_tag.outputs.TAG }}
19
- name: Prepare message
20
id: get_message
21
- run: echo "{MSG}=${{ secrets.SLACK_MESSAGE }}" >> $GITHUB_OUTPUT
+ run: echo "MSG=${{ secrets.SLACK_MESSAGE }}" >> $GITHUB_OUTPUT
22
23
VERSION: ${{ steps.get_version.outputs.VERSION }}
24
0 commit comments