File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 88 default : ${{github.ref}}
99 required : false
1010 type : string
11+ build-devcontainer :
12+ description : " True will build the devcontainer"
13+ default : true
14+ required : false
15+ type : boolean
1116 outputs :
1217 artifact-name :
1318 description : " artifacts name"
2429 workflow_dispatch :
2530
2631jobs :
32+ build-devcontainer :
33+ uses : ./.github/workflows/build-devcontainer.yaml
34+ secrets : inherit
35+ with :
36+ tags : " ${{ github.sha }}"
37+ # NOTE: We check "!= true" instead of just checking the value
38+ # since by default when the workflow is call with "workflow dispatch"
39+ # the input will (sadly) be "" and not use the default value
40+ skip : ${{ inputs.build-devcontainer != true }}
41+
2742 build :
2843 runs-on : ubuntu-20.04
2944 outputs :
You can’t perform that action at this time.
0 commit comments