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 e3737e5 commit de1fd2d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/release-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,19 @@ jobs:
- name: Build release
run: nix build

- name: Move binary to tmp
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 ~/vs-code-extension.zip .
shell: bash
run: cd vs-code-extension/out/ && zip -r vs-code-extension.zip . && cd ../..

- name: Upload config-lsp
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
files: |
~/config-lsp
~/vs-code-extension.zip
./result/bin/config-lsp
./vs-code-extension/out/vs-code-extension.zip

0 comments on commit de1fd2d

Please sign in to comment.