diff --git a/.github/workflows/release-nightly.yaml b/.github/workflows/release-nightly.yaml index e3d0886..2bc17f3 100644 --- a/.github/workflows/release-nightly.yaml +++ b/.github/workflows/release-nightly.yaml @@ -43,11 +43,14 @@ jobs: - name: Build release run: nix build + - name: Move binary to tmp + run: mv result/bin/config-lsp /tmp/config-lsp + - 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 . && cd ../.. + run: cd vs-code-extension/out/ && zip -r /tmp/vs-code-extension.zip . - name: Upload config-lsp uses: softprops/action-gh-release@v1 @@ -55,6 +58,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} with: files: | - result/bin/config-lsp - vs-code-extension/out/vs-code-extension.zip + /tmp/config-lsp + /tmp/vs-code-extension.zip