Skip to content

Commit 1b06408

Browse files
authored
Merge pull request #129 from Discookie/ericsson/fix-vsce-2
Fix vsce (again) and bump version to 1.5.0
2 parents b5b67ab + 6a2505d commit 1b06408

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/deploy.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ jobs:
1313
- name: Get the version
1414
id: get_version
1515
run: echo version=${GITHUB_REF#refs/tags/} >>$GITHUB_OUTPUT
16+
outputs:
17+
version: ${{ steps.get_version.outputs.version }}
1618

1719
test:
1820
uses: ./.github/workflows/test.yml
1921
package:
2022
needs: [version]
2123
uses: ./.github/workflows/package.yml
2224
with:
23-
version: ${{ needs.version.output.version }}
25+
version: ${{ needs.version.outputs.version }}
2426

2527
build:
2628
name: Create extension
@@ -56,4 +58,4 @@ jobs:
5658
with:
5759
pat: ${{ secrets[matrix.token] }}
5860
registryUrl: ${{ matrix.registryUrl }}
59-
extensionFile: ./${{ matrix.name }}-${{ needs.version.output.version }}.vsix
61+
extensionFile: ./${{ matrix.name }}-${{ needs.version.outputs.version }}.vsix

.github/workflows/test-commit.yml

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
- name: Get the version
1212
id: get_version
1313
run: echo version=0.0.0-$(echo ${GITHUB_SHA} | head -c 7) >>$GITHUB_OUTPUT
14+
outputs:
15+
version: ${{ steps.get_version.outputs.version }}
1416

1517
package:
1618
needs: [version]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/Ericsson/CodeCheckerVSCodePlugin/issues"
1515
},
1616
"license": "Apache-2.0",
17-
"version": "1.4.0",
17+
"version": "1.5.0",
1818
"engines": {
1919
"vscode": "^1.53.0"
2020
},

0 commit comments

Comments
 (0)