Skip to content

Commit

Permalink
fix(ci-cd): Fix CI:CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzel394 committed Oct 16, 2024
1 parent 14af044 commit e3737e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@ jobs:
run: nix build

- 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
run: ./vs-code-extension/build-extension.sh

- 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
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
files: |
/tmp/config-lsp
/tmp/vs-code-extension.zip
~/config-lsp
~/vs-code-extension.zip

0 comments on commit e3737e5

Please sign in to comment.