Skip to content

Commit 03dfc9c

Browse files
committed
Add publish workflow
1 parent 2c68935 commit 03dfc9c

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: publish
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up MSBuild
17+
uses: microsoft/setup-msbuild@v2
18+
19+
- name: Build Solution
20+
run: msbuild SilkysLoader.sln /p:Configuration=Release /p:Platform=x86
21+
22+
- name: Upload Artifacts
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: SilkysLoader
26+
path: |
27+
Build/Artifacts/**

0 commit comments

Comments
 (0)