We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c68935 commit 03dfc9cCopy full SHA for 03dfc9c
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,27 @@
1
+name: publish
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
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