File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2828 exit 1
2929
3030 - name : Write release version env vars (with/without v)
31+ env :
32+ INPUT_VERSION : ${{ inputs.version }}
3133 run : |
32- VERSION_NAME="v${{ inputs.version }} "
34+ VERSION_NAME="v$INPUT_VERSION "
3335 VERSION_NUMBER="${VERSION_NAME:1}"
3436 echo "VERSION_NUMBER=${VERSION_NUMBER}" >> $GITHUB_ENV
3537 echo "VERSION_NAME=${VERSION_NAME}" >> $GITHUB_ENV
Original file line number Diff line number Diff line change 1414 env :
1515 GH_REPO : ${{ github.repository }}
1616 GH_TOKEN : ${{ github.token }}
17+ RUN_ID : ${{ inputs.run_id }}
1718 run : |
18- gh run watch ${{ inputs.run_id }} > /dev/null 2>&1
19- gh run rerun ${{ inputs.run_id }} --failed
19+ gh run watch "$RUN_ID" > /dev/null 2>&1
20+ gh run rerun "$RUN_ID" --failed
You can’t perform that action at this time.
0 commit comments