We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61b1af1 commit cf61481Copy full SHA for cf61481
1 file changed
.github/workflows/debug-context.yaml
@@ -0,0 +1,26 @@
1
+on:
2
+ push:
3
+
4
+jobs:
5
+ build:
6
+ strategy:
7
+ matrix:
8
+ package: ${{ fromJSON('["A", "B", "C"]') }}
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Set digest output
12
+ run: |
13
+ RAND=$(openssl rand -hex 16)
14
+ echo "digest=${PACKAGE}@${RAND}" > $GITHUB_OUTPUT
15
+ id: mystep
16
+ env:
17
+ package: ${{ matrix.package }}
18
+ outputs:
19
+ digest: ${{ steps.mystep.outputs.digest || '' }}
20
21
+ deploy:
22
23
+ needs: [build]
24
25
+ - run: ${{ tojson(needs) }}
26
+ shell: cat {0}
0 commit comments