File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Build the application for all devices and upload the artifact
2
2
3
3
on :
4
4
workflow_call :
5
+ secrets :
6
+ token :
7
+ description : ' A token passed from the caller workflow'
8
+ required : false
5
9
inputs :
6
10
app_repository :
7
11
description : ' The GIT repository to build (defaults to `github.repository`)'
58
62
required : false
59
63
default : " "
60
64
type : string
65
+ token :
66
+ description : ' Optional token for authentication'
67
+ required : false
68
+ default : ${{ github.token }}
69
+ type : string
61
70
62
71
jobs :
63
72
call_get_app_metadata :
89
98
repository : ${{ inputs.app_repository }}
90
99
ref : ${{ inputs.app_branch_name }}
91
100
submodules : recursive
101
+ token : ${{ secrets.token }}
92
102
93
103
- name : Build application
94
104
id : " build"
You can’t perform that action at this time.
0 commit comments