File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11name : LBox Publish
22
33on :
4- workflow_dispatch :
4+ workflow_call :
55 inputs :
66 tag :
77 description : ' Release Tag'
88 required : true
9+ type : string
910
1011concurrency :
1112 group : ${{ github.workflow }}-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -23,7 +23,18 @@ permissions:
2323 id-token : write
2424
2525jobs :
26+ build-lbox :
27+ permissions :
28+ actions : read
29+ contents : write
30+ id-token : write # Needed to access the workflow's OIDC identity.
31+ packages : write
32+ uses : ./.github/workflows/lbox-publish.yml
33+ with :
34+ tag : ${{ inputs.tag }}
35+ secrets : inherit
2636 build :
37+ needs : ['build-lbox']
2738 runs-on : ubuntu-latest
2839 outputs :
2940 hashes : ${{ steps.hash.outputs.hashes }}
You can’t perform that action at this time.
0 commit comments