From e9d295fd03f8fa34a21d78401ff8b36a33b47874 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Thu, 3 Apr 2025 17:29:17 +0200 Subject: [PATCH] fix(announce): update output syntax in slack announcement workflow --- .github/workflows/announce.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/announce.yaml b/.github/workflows/announce.yaml index b6b38ad029..67ef201d88 100644 --- a/.github/workflows/announce.yaml +++ b/.github/workflows/announce.yaml @@ -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 }}