We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f9ae3 commit efd74ffCopy full SHA for efd74ff
.github/workflows/nix.yml
@@ -38,7 +38,11 @@ jobs:
38
- name: Set matrix
39
id: set-matrix
40
run: |
41
- echo 'matrix={"include":[{"target":"webforge","hostname":"webforge","domain":""}]}' >> $GITHUB_OUTPUT
+ # Create a "matrix" targeting the systems we want to check (and later deploy),
42
+ # which will be consumed by the next job to start one build per system.
43
+ echo 'matrix={"include":[\
44
+ {"target":"webforge","hostname":"webforge","domain":"tahoe-lafs.org"}\
45
+ ]}' >> $GITHUB_OUTPUT
46
47
build:
48
name: Build
@@ -47,6 +51,7 @@ jobs:
51
needs: check
52
strategy:
49
53
fail-fast: false
54
+ # Consuming the matrix created above
50
55
matrix: ${{fromJson(needs.check.outputs.matrix)}}
56
steps:
57
- name: Checkout
0 commit comments