Skip to content

Commit

Permalink
Create windows.yml
Browse files Browse the repository at this point in the history
(praying this works)
  • Loading branch information
aubreyrs authored Nov 1, 2024
1 parent 0724846 commit ae96b7a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build on Windows

on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
workflow_dispatch:

jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-msvc

- name: Build Windows
run: cargo build --release --target x86_64-pc-windows-msvc

- name: Upload Windows Artifact
uses: actions/upload-artifact@v4
with:
name: pixie-installer-windows
path: target/x86_64-pc-windows-msvc/release/pixie-installer.exe

0 comments on commit ae96b7a

Please sign in to comment.