From f1f8a1d3a92342676c057c088ff6084efcfe0c09 Mon Sep 17 00:00:00 2001 From: zyy17 Date: Tue, 8 Aug 2023 17:20:11 +0800 Subject: [PATCH] ci: fix incorrect variable name (#2121) --- .github/workflows/dev-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml index ae56a82c5123..9193ad830dd2 100644 --- a/.github/workflows/dev-build.yml +++ b/.github/workflows/dev-build.yml @@ -333,11 +333,11 @@ jobs: if: ${{ needs.release-images-to-dockerhub.outputs.build-result == 'success' }} with: payload: | - {"text": "GreptimeDB ${{ NEXT_RELEASE_VERSION }} build successful"} + {"text": "GreptimeDB ${{ env.NEXT_RELEASE_VERSION }} build successful"} - name: Notifiy nightly build failed result uses: slackapi/slack-github-action@v1.23.0 if: ${{ needs.release-images-to-dockerhub.outputs.build-result != 'success' }} with: payload: | - {"text": "GreptimeDB ${{ NEXT_RELEASE_VERSION }} build failed, please check 'https://github.com/GreptimeTeam/greptimedb/actions/workflows/${{ NEXT_RELEASE_VERSION }}-build.yml'"} + {"text": "GreptimeDB ${{ env.NEXT_RELEASE_VERSION }} build failed, please check 'https://github.com/GreptimeTeam/greptimedb/actions/workflows/${{ env.NEXT_RELEASE_VERSION }}-build.yml'"}