We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87381a5 commit 43dd864Copy full SHA for 43dd864
.github/workflows/lambda-runner-binaries-syncer.yml
@@ -4,9 +4,10 @@ env:
4
lambda_path: modules/runner-binaries-syncer/lambdas/runner-binaries-syncer
5
on:
6
push:
7
- branches:
8
- - master
9
- tags:
+ # branches:
+ # - master
+ # tags:
10
+ # - *
11
pull_request:
12
paths:
13
- .github/workflows/lambda-runner-binaries-syncer.yml
@@ -28,7 +29,7 @@ jobs:
28
29
- name: Build distribution
30
run: yarn build
31
- name: Upload distribution
- # if: startsWith(github.ref, 'refs/tags/')
32
+ if: startsWith(github.ref, 'refs/tags/')
33
uses: actions/upload-artifact@v1
34
with:
35
name: dist
@@ -39,7 +40,7 @@ jobs:
39
40
needs: build
41
runs-on: ubuntu-latest
42
container: node:12
43
44
45
steps:
46
- name: Create Release
0 commit comments