File tree Expand file tree Collapse file tree 2 files changed +17
-15
lines changed Expand file tree Collapse file tree 2 files changed +17
-15
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 prev_sdk_tag :
10- description : ' Prev SDK Release Tag, used to determine which lbox files have changed '
11+ description : ' Prev SDK Release Tag'
1112 required : true
13+ type : string
1214
1315concurrency :
1416 group : ${{ github.workflow }}-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ permissions:
2626 id-token : write
2727
2828jobs :
29- # build-lbox:
30- # permissions:
31- # actions: read
32- # contents: write
33- # id-token: write # Needed to access the workflow's OIDC identity.
34- # packages: write
35- # uses: ./.github/workflows/lbox-publish.yml
36- # with:
37- # tag: ${{ inputs.tag }}
38- # prev_sdk_tag: ${{ inputs.prev_sdk_tag }}
39- # secrets: inherit
29+ build-lbox :
30+ permissions :
31+ actions : read
32+ contents : write
33+ id-token : write # Needed to access the workflow's OIDC identity.
34+ packages : write
35+ uses : ./.github/workflows/lbox-publish.yml
36+ with :
37+ tag : ${{ inputs.tag }}
38+ prev_sdk_tag : ${{ inputs.prev_sdk_tag }}
39+ secrets : inherit
4040 build :
41- # needs: ['build-lbox']
41+ needs : ['build-lbox']
4242 runs-on : ubuntu-latest
4343 outputs :
4444 hashes : ${{ steps.hash.outputs.hashes }}
@@ -252,4 +252,4 @@ jobs:
252252 digest : ${{ needs. container-publish.outputs.digest }}
253253 registry-username : ${{ github.actor }}
254254 secrets :
255- registry-password : ${{ secrets.GITHUB_TOKEN }}
255+ registry-password : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments