From 7e82aaad2634c69be518b27472ee1d8d8d21f25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Gim=C3=A9nez=20D=C3=ADaz?= <98734290+marcosgdz03@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:23:11 +0200 Subject: [PATCH 1/2] Add step to upload VSIX artifact in CI workflow --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46279aa..c0bcde0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,3 +42,10 @@ jobs: run: | npm install -g vsce npx vsce package + + # 8️⃣ Subir VSIX como artefacto + - name: Upload VSIX artifact + uses: actions/upload-artifact@v3 + with: + name: sql-helper-vsix + path: "*.vsix" From 2b7beb652632b17373ac20e450ec6ef1b8859de9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Gim=C3=A9nez=20D=C3=ADaz?= <98734290+marcosgdz03@users.noreply.github.com> Date: Sun, 29 Mar 2026 16:24:52 +0200 Subject: [PATCH 2/2] Update upload-artifact action to version 4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0bcde0..8b3fa6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: # 8️⃣ Subir VSIX como artefacto - name: Upload VSIX artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sql-helper-vsix path: "*.vsix"