File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build Commit
2+
3+ on :
4+ push :
5+ branches :
6+ - ' **'
7+ workflow_dispatch :
8+
9+ jobs :
10+ build :
11+ runs-on : windows-latest
12+
13+ steps :
14+ - name : GIT Checkout
15+ uses : actions/checkout@v4
16+ with :
17+ submodules : ' recursive'
18+
19+ - name : Fetch Submodules Recursively
20+ run : git submodule update --init --recursive
21+
22+ - name : .NET 10 Setup
23+ uses : actions/setup-dotnet@v4
24+ with :
25+ dotnet-version : ' 10.0.x'
26+
27+ - name : .NET Restore
28+ run : dotnet restore FortnitePorting
29+
30+ - name : .NET Publish
31+ run : |
32+ dotnet publish FortnitePorting -c Release --self-contained -r win-x64 -o "./Release" `
33+ -p:PublishSingleFile=true `
34+ -p:DebugType=None `
35+ -p:DebugSymbols=false `
36+ -p:IncludeNativeLibrariesForSelfExtract=true
37+
38+ - name : Upload Build Artifact
39+ uses : actions/upload-artifact@v4
40+ with :
41+ name : FortnitePorting-${{ github.sha }}
42+ path : ./Release/FortnitePorting.exe
43+ retention-days : 30
Original file line number Diff line number Diff line change 1- name : Build and Release
1+ name : Build Release
22
33on :
44 push :
You can’t perform that action at this time.
0 commit comments