Skip to content

Commit

Permalink
feat: windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ozwaldorf authored May 13, 2024
1 parent 1166dd6 commit 598f317
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Windows binary
on: workflow_dispatch

jobs:
build:
name: Build binary (Windows)
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
name: Checkout
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build Binary
shell: powershell
run: |
& cargo build --locked --release
- name: Upload Files
uses: actions/upload-artifact@v4
with:
name: lutgen-windows
path: target/release/lutgen.exe

0 comments on commit 598f317

Please sign in to comment.