File tree 2 files changed +8
-8
lines changed 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -35,15 +35,15 @@ jobs:
35
35
username : ${{ secrets.DOCKER_USERNAME }}
36
36
password : ${{ secrets.DOCKER_PASSWORD }}
37
37
38
- - name : Get version branch
39
- id : version-branch
40
- run : echo "::set-output name=name::v $(jq .version package.json)"
38
+ - name : Get version
39
+ id : version
40
+ run : echo "::set-output name=version:: $(jq .version package.json)"
41
41
42
42
- name : Download artifact
43
43
uses : dawidd6/action-download-artifact@v2
44
44
id : download
45
45
with :
46
- branch : v${{ steps.version-branch .outputs.name }}
46
+ branch : v${{ steps.version.outputs.version }}
47
47
workflow_conclusion : completed
48
48
name : " release-packages"
49
49
path : release-packages
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ jobs:
23
23
steps :
24
24
- uses : actions/checkout@v3
25
25
26
- - name : Get version branch
27
- id : version-branch
28
- run : echo "::set-output name=name::v $(jq .version package.json)"
26
+ - name : Get version
27
+ id : version
28
+ run : echo "::set-output name=version:: $(jq .version package.json)"
29
29
30
30
- name : Download artifact
31
31
uses : dawidd6/action-download-artifact@v2
32
32
id : download
33
33
with :
34
- branch : v${{ steps.version-branch .outputs.name }}
34
+ branch : v${{ steps.version.outputs.version }}
35
35
workflow_conclusion : completed
36
36
name : " npm-package"
37
37
path : release-npm-package
You can’t perform that action at this time.
0 commit comments