Skip to content

Commit

Permalink
chore: fix shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
tianzhou committed Mar 14, 2024
1 parent a5ab4b9 commit dad7a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bytebase-check-migration-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: |
status=$(echo '${{ steps.get.outputs.issue }}' | jq -r '.status')
issue_uid=$(echo '${{ steps.get.outputs.issue }}' | jq -r '.uid')
issue_url=$(echo '${{ env.BYTEBASE_URL }}/projects/${{ env.PROJECT }}/issues/${issue_uid}')
issue_url="${{ env.BYTEBASE_URL }}/projects/${{ env.PROJECT }}/issues/${issue_uid}"
if [ "$status" = "DONE" ]; then
echo "Migration has been rolled out: ${issue_url}"
exit 0
Expand Down

0 comments on commit dad7a63

Please sign in to comment.