Skip to content

Commit

Permalink
fix release ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
xgui3783 committed Mar 12, 2024
1 parent bea251a commit b85d964
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- get-all-opened
steps:
- run: |
OPEN_RELEASE_ISSUES=${{ needs.get-all-opened.outputs.OPEN_RELEASE_ISSUES }}
OPEN_RELEASE_ISSUES='${{ needs.get-all-opened.outputs.OPEN_RELEASE_ISSUES }}'
echo Found open issues: $OPEN_RELEASE_ISSUES
for issue in $(echo $OPEN_RELEASE_ISSUES | jq -c '.[]')
do
Expand All @@ -70,7 +70,7 @@ jobs:
- get-all-opened
steps:
- run: |
OPEN_RELEASE_ISSUES=${{ needs.get-all-opened.outputs.OPEN_RELEASE_ISSUES }}
OPEN_RELEASE_ISSUES='${{ needs.get-all-opened.outputs.OPEN_RELEASE_ISSUES }}'
echo Found open issues: $OPEN_RELEASE_ISSUES
for issue in $(echo $OPEN_RELEASE_ISSUES | jq -c '.[]')
do
Expand All @@ -97,7 +97,7 @@ jobs:
steps:
- name: "Add comment to issue"
run: |
OPEN_RELEASE_ISSUES=${{ needs.get-all-opened.outputs.OPEN_RELEASE_ISSUES }}
OPEN_RELEASE_ISSUES='${{ needs.get-all-opened.outputs.OPEN_RELEASE_ISSUES }}'
echo Found open issues: $OPEN_RELEASE_ISSUES
for issue in $(echo $OPEN_RELEASE_ISSUES | jq -c '.[]')
do
Expand Down

0 comments on commit b85d964

Please sign in to comment.