From f90a87c2bcba4c406e859e01efe01bdd1162af8c Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Wed, 16 Oct 2024 22:46:15 +0200 Subject: [PATCH] fix(ci-cd): Fix CI:CD --- .github/workflows/release-nightly.yaml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release-nightly.yaml b/.github/workflows/release-nightly.yaml index e50af45..c828239 100644 --- a/.github/workflows/release-nightly.yaml +++ b/.github/workflows/release-nightly.yaml @@ -43,19 +43,18 @@ jobs: - name: Build release run: nix build + - name: Build VS code extension + run: ./vs-code-extension/build-extension.sh + + - name: Zip folder + run: cd vs-code-extension/out/ && zip -r vs-code-extension.zip . + - name: Upload config-lsp uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: - files: result/bin/config-lsp - - - name: Build VS code extension - run: ./vs-code-extension/build-extension.sh - - - name: Upload VS Code extension - uses: actions/upload-artifact@v4 - with: - name: vs-code-extension - path: ./vs-code-extension/out/ + files: | + result/bin/config-lsp + vs-code-extension/out/vs-code-extension.zip