From fe50b7df58a71456784ba3bfe0aad65022c688c6 Mon Sep 17 00:00:00 2001 From: Catherine Date: Sat, 6 Jan 2024 23:57:16 +0000 Subject: [PATCH] CI: fix publish job. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edc92a5..c6063c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: publish: needs: build runs-on: ubuntu-latest - if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')" + if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') steps: - name: Set up Node uses: actions/setup-node@v3 @@ -46,7 +46,6 @@ jobs: uses: actions/download-artifact@v3 with: name: package - path: 'dist/' - name: Publish package run: vsce publish -i *.vsix env: