Skip to content

Commit aac8de1

Browse files
committed
Experiment with dist
1 parent 0673f65 commit aac8de1

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/lambda-runner-binaries-syncer.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,30 @@ jobs:
2525
run: yarn lint
2626
- name: Build distribution
2727
run: yarn build
28+
- name: Dump GitHub context
29+
env:
30+
GITHUB_CONTEXT: ${{ toJson(github) }}
31+
run: echo "$GITHUB_CONTEXT"
32+
- name: Dump job context
33+
env:
34+
JOB_CONTEXT: ${{ toJson(job) }}
35+
run: echo "$JOB_CONTEXT"
36+
- name: Dump steps context
37+
env:
38+
STEPS_CONTEXT: ${{ toJson(steps) }}
39+
run: echo "$STEPS_CONTEXT"
40+
- name: Dump runner context
41+
env:
42+
RUNNER_CONTEXT: ${{ toJson(runner) }}
43+
run: echo "$RUNNER_CONTEXT"
44+
- name: Dump strategy context
45+
env:
46+
STRATEGY_CONTEXT: ${{ toJson(strategy) }}
47+
run: echo "$STRATEGY_CONTEXT"
48+
- name: Dump matrix context
49+
env:
50+
MATRIX_CONTEXT: ${{ toJson(matrix) }}
51+
run: echo "$MATRIX_CONTEXT"
2852
- name: Upload distribution
2953
# if: startsWith(github.ref, 'refs/tags/')
3054
uses: actions/upload-artifact@v1

0 commit comments

Comments
 (0)