From 58ad77c5e5fc9cd4e1f8b3cedd09c1370a99b7a3 Mon Sep 17 00:00:00 2001 From: Discookie Date: Tue, 13 Jun 2023 14:18:06 +0200 Subject: [PATCH 1/2] Quick check for versions --- .github/workflows/deploy.yml | 6 ++++-- .github/workflows/test-commit.yml | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1c7f636..6f000fc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,6 +13,8 @@ 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 @@ -20,7 +22,7 @@ jobs: needs: [version] uses: ./.github/workflows/package.yml with: - version: ${{ needs.version.output.version }} + version: ${{ needs.version.outputs.version }} build: name: Create extension @@ -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 diff --git a/.github/workflows/test-commit.yml b/.github/workflows/test-commit.yml index bf19c20..1012107 100644 --- a/.github/workflows/test-commit.yml +++ b/.github/workflows/test-commit.yml @@ -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] From 6a2505dac8c604654fac436eb875d4a3ab10634a Mon Sep 17 00:00:00 2001 From: Discookie Date: Tue, 13 Jun 2023 14:57:55 +0200 Subject: [PATCH 2/2] Bump version to 1.5.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1d29425..5632dd8 100644 --- a/package.json +++ b/package.json @@ -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" },