Skip to content

Commit

Permalink
Update CI for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Nov 5, 2023
1 parent 6ca75c7 commit 720cc64
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "CI"
on: push

jobs:
build-release:
build-mac:
runs-on: "macos-latest"
steps:
- uses: actions/checkout@v4
Expand All @@ -24,3 +24,25 @@ jobs:
with:
name: "overlayed-unstable-mac"
path: "src-tauri/target/release/bundle/dmg/*.dmg"
build-windows:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- uses: pnpm/action-setup@v2
with:
version: 8
- name: install frontend dependencies
run: pnpm install
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
with:
name: "overlayed-unstable-windows"
path: "src-tauri/target/release/bundle/**/*.exe"

0 comments on commit 720cc64

Please sign in to comment.