File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 9
9
types : [published]
10
10
11
11
jobs :
12
+ # NOTE: this job requires curl, jq and yarn
13
+ # All of them are included in ubuntu-latest.
12
14
npm :
13
15
runs-on : ubuntu-latest
14
16
steps :
15
- - uses : actions/checkout@v1
17
+ - uses : actions/checkout@v2
18
+
16
19
- name : Run ./ci/steps/publish-npm.sh
17
- uses : ./ci/images/debian10
18
- with :
19
- args : ./ci/steps/publish-npm.sh
20
+ run : ./ci/steps/publish-npm.sh
20
21
env :
21
22
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
23
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
23
24
25
+ # NOTE: this job requires curl, jq and docker
26
+ # All of them are included in ubuntu-latest.
24
27
docker :
25
28
runs-on : ubuntu-latest
26
29
steps :
27
- - uses : actions/checkout@v1
30
+ - uses : actions/checkout@v2
31
+
28
32
- name : Run ./ci/steps/push-docker-manifest.sh
29
- uses : ./ci/images/debian10
30
- with :
31
- args : ./ci/steps/push-docker-manifest.sh
33
+ run : ./ci/steps/push-docker-manifest.sh
32
34
env :
33
35
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34
36
DOCKER_USERNAME : ${{ secrets.DOCKER_USERNAME }}
You can’t perform that action at this time.
0 commit comments