File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1414 uses : ./.github/workflows/version.yml
1515
1616 release :
17- needs : build
17+ needs :
18+ - build
19+ - version
20+
1821 runs-on : ubuntu-latest
1922
2023 steps :
3134 env :
3235 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3336 with :
34- tag_name : ${{ jobs .version.outputs.VERSION }}
35- release_name : ${{ jobs .version.outputs.VERSION }}
37+ tag_name : ${{ needs .version.outputs.VERSION }}
38+ release_name : ${{ needs .version.outputs.VERSION }}
3639 draft : false
3740 prerelease : false
3841
Original file line number Diff line number Diff line change 44 outputs :
55 VERSION :
66 description : " The VERSION string"
7- value : ${{ jobs.build .outputs.VERSION }}
7+ value : ${{ jobs.version .outputs.VERSION }}
88
99jobs :
10- get- version :
10+ version :
1111 runs-on : ubuntu-latest
1212
1313 outputs :
You can’t perform that action at this time.
0 commit comments