-
Notifications
You must be signed in to change notification settings - Fork 11
34 lines (30 loc) · 942 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
on: [push, pull_request]
name: Build
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install Rust
uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- name: Build
run: ./package.ps1
- name: Upload GDWeave
uses: actions/upload-artifact@v3
with:
name: GDWeave
path: ./local/GDWeave
- name: Upload Thunderstore package
uses: actions/upload-artifact@v3
with:
name: thunderstore
path: ./thunderstore