Skip to content

Commit

Permalink
added support for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ohuu committed Aug 27, 2024
1 parent 301d55b commit 090ce5c
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,14 @@ jobs:
with:
node-version: "20.x"

- name: Install NodeJS dependencies
run: npm --prefix ui install

- name: Build UI
run: npm --prefix ui run build:release
run: cd ui && npm install && npm run build:release

- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Build Cardamon
run: cargo build --release
run: cd ../ && cargo build --release

- name: Build release artifact
run: |
Expand Down Expand Up @@ -91,11 +88,8 @@ jobs:
with:
node-version: "20.x"

- name: Install NodeJS dependencies
run: npm --prefix ui install

- name: Build UI
run: npm --prefix ui run build:release
run: cd ui && npm install && npm run build:release

- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down

0 comments on commit 090ce5c

Please sign in to comment.