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 1
1
name : LBox Publish
2
2
3
3
on :
4
- workflow_dispatch :
4
+ workflow_call :
5
5
inputs :
6
6
tag :
7
7
description : ' Release Tag'
8
8
required : true
9
+ type : string
9
10
10
11
concurrency :
11
12
group : ${{ github.workflow }}-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -23,7 +23,18 @@ permissions:
23
23
id-token : write
24
24
25
25
jobs :
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
26
36
build :
37
+ needs : ['build-lbox']
27
38
runs-on : ubuntu-latest
28
39
outputs :
29
40
hashes : ${{ steps.hash.outputs.hashes }}
You can’t perform that action at this time.
0 commit comments