fix(ci-cd): Fix CI:CD

This commit is contained in:
Myzel394 2024-10-16 22:56:44 +02:00
parent 14af044792
commit e3737e5933
No known key found for this signature in database
GPG Key ID: ED20A1D1D423AF3F

View File

@ -44,13 +44,13 @@ jobs:
run: nix build run: nix build
- name: Move binary to tmp - name: Move binary to tmp
run: mv result/bin/config-lsp /tmp/config-lsp run: mv result/bin/config-lsp ~/config-lsp
- name: Build VS code extension - name: Build VS code extension
run: ./vs-code-extension/build-extension.sh run: ./vs-code-extension/build-extension.sh
- name: Zip folder - name: Zip folder
run: cd vs-code-extension/out/ && zip -r /tmp/vs-code-extension.zip . run: cd vs-code-extension/out/ && zip -r ~/vs-code-extension.zip .
- name: Upload config-lsp - name: Upload config-lsp
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
@ -58,6 +58,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with: with:
files: | files: |
/tmp/config-lsp ~/config-lsp
/tmp/vs-code-extension.zip ~/vs-code-extension.zip