We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 134c2e1 commit ddf5220Copy full SHA for ddf5220
1 file changed
.github/workflows/compile-function.yaml
@@ -19,8 +19,6 @@ jobs:
19
# CHANGE program/lib/aux as needed
20
program:
21
- name: 'function'
22
- src: 'examples/function'
23
- lib: ''
24
aux: 'LoggerCore/src/LoggerFunction* LoggerCore/src/LoggerModule*'
25
# CHANGE platforms as needed
26
platform:
@@ -33,9 +31,9 @@ jobs:
33
31
uses: ./.github/workflows/compile.yaml
34
32
secrets: inherit
35
with:
36
- program: ${{ matrix.program.name }}
37
platform: ${{ matrix.platform.name }}
38
version: ${{ matrix.platform.version }}
39
- src: ${{ matrix.program.src }}
40
- lib: ${{ matrix.program.lib }}
41
- aux: ${{ matrix.program.aux }}
+ program: ${{ matrix.program.name }}
+ src: ${{ matrix.program.src || '' }}
+ lib: ${{ matrix.program.lib || '' }}
+ aux: ${{ matrix.program.aux || '' }}
0 commit comments