Skip to content

Commit 984f250

Browse files
committed
Experiment with varialbes
1 parent 2a5f023 commit 984f250

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: Lambda Runner Binaries Syncer
2+
env:
3+
lambda_name: runner-binaries-syncer
24
on:
35
push:
46
branches:
57
- master
68
pull_request:
79
paths:
8-
- .github/workflows/lambda-agent-webhook.yml
10+
- .github/workflows/${lambda_name}.yml
911
- "modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/**"
1012

1113
jobs:
@@ -24,3 +26,9 @@ jobs:
2426
run: yarn lint
2527
- name: Build distribution
2628
run: yarn build
29+
- name: Upload distribution
30+
if: startsWith(github.ref, 'refs/tags/')
31+
uses: actions/upload-artifact@v2
32+
with:
33+
name: dist
34+
path: dist

0 commit comments

Comments
 (0)