File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,16 @@ jobs:
13
13
- name : Get the version
14
14
id : get_version
15
15
run : echo version=${GITHUB_REF#refs/tags/} >>$GITHUB_OUTPUT
16
+ outputs :
17
+ version : ${{ steps.get_version.outputs.version }}
16
18
17
19
test :
18
20
uses : ./.github/workflows/test.yml
19
21
package :
20
22
needs : [version]
21
23
uses : ./.github/workflows/package.yml
22
24
with :
23
- version : ${{ needs.version.output .version }}
25
+ version : ${{ needs.version.outputs .version }}
24
26
25
27
build :
26
28
name : Create extension
56
58
with :
57
59
pat : ${{ secrets[matrix.token] }}
58
60
registryUrl : ${{ matrix.registryUrl }}
59
- extensionFile : ./${{ matrix.name }}-${{ needs.version.output .version }}.vsix
61
+ extensionFile : ./${{ matrix.name }}-${{ needs.version.outputs .version }}.vsix
Original file line number Diff line number Diff line change 11
11
- name : Get the version
12
12
id : get_version
13
13
run : echo version=0.0.0-$(echo ${GITHUB_SHA} | head -c 7) >>$GITHUB_OUTPUT
14
+ outputs :
15
+ version : ${{ steps.get_version.outputs.version }}
14
16
15
17
package :
16
18
needs : [version]
Original file line number Diff line number Diff line change 14
14
"url" : " https://github.com/Ericsson/CodeCheckerVSCodePlugin/issues"
15
15
},
16
16
"license" : " Apache-2.0" ,
17
- "version" : " 1.4 .0" ,
17
+ "version" : " 1.5 .0" ,
18
18
"engines" : {
19
19
"vscode" : " ^1.53.0"
20
20
},
You can’t perform that action at this time.
0 commit comments