Skip to content

Commit

Permalink
Merge pull request #129 from Discookie/ericsson/fix-vsce-2
Browse files Browse the repository at this point in the history
Fix vsce (again) and bump version to 1.5.0
  • Loading branch information
vodorok authored Jun 13, 2023
2 parents b5b67ab + 6a2505d commit 1b06408
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ jobs:
- name: Get the version
id: get_version
run: echo version=${GITHUB_REF#refs/tags/} >>$GITHUB_OUTPUT
outputs:
version: ${{ steps.get_version.outputs.version }}

test:
uses: ./.github/workflows/test.yml
package:
needs: [version]
uses: ./.github/workflows/package.yml
with:
version: ${{ needs.version.output.version }}
version: ${{ needs.version.outputs.version }}

build:
name: Create extension
Expand Down Expand Up @@ -56,4 +58,4 @@ jobs:
with:
pat: ${{ secrets[matrix.token] }}
registryUrl: ${{ matrix.registryUrl }}
extensionFile: ./${{ matrix.name }}-${{ needs.version.output.version }}.vsix
extensionFile: ./${{ matrix.name }}-${{ needs.version.outputs.version }}.vsix
2 changes: 2 additions & 0 deletions .github/workflows/test-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
- name: Get the version
id: get_version
run: echo version=0.0.0-$(echo ${GITHUB_SHA} | head -c 7) >>$GITHUB_OUTPUT
outputs:
version: ${{ steps.get_version.outputs.version }}

package:
needs: [version]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "https://github.com/Ericsson/CodeCheckerVSCodePlugin/issues"
},
"license": "Apache-2.0",
"version": "1.4.0",
"version": "1.5.0",
"engines": {
"vscode": "^1.53.0"
},
Expand Down

0 comments on commit 1b06408

Please sign in to comment.