Skip to content

Commit ac76c4f

Browse files
committed
Add GitHub Action for building
1 parent 791fa85 commit ac76c4f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
8+
jobs:
9+
publish-windows:
10+
runs-on: windows-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions-rust-lang/setup-rust-toolchain@v1
14+
- run: cargo build --release --target x86_64-pc-windows-msvc
15+
- uses: actions/upload-artifact@v4
16+
with:
17+
name: windows-artifact
18+
path: target/x86_64-pc-windows-msvc/release/runner2.exe

0 commit comments

Comments
 (0)