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] 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" },