Skip to content

Commit

Permalink
ci: fix incorrect variable name (GreptimeTeam#2121)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyy17 authored Aug 8, 2023
1 parent e7abd00 commit f1f8a1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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'"}

0 comments on commit f1f8a1d

Please sign in to comment.