forked from Babyhamsta/Aimmy
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a85102
commit d71209d
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#not sure if im doing this right lol | ||
name: .NET Core Desktop | ||
|
||
on: | ||
push: | ||
branches: [ "Aimmy-V2" ] | ||
pull_request: | ||
branches: [ "Aimmy-V2" ] | ||
|
||
jobs: | ||
|
||
build: | ||
strategy: | ||
matrix: | ||
targetplatform: [x64] | ||
configuration: [Release] | ||
|
||
runs-on: windows-latest # For a list of available runner types, refer to | ||
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | ||
|
||
env: | ||
Solution_Name: Aimmy2.sln # Replace with your solution name, i.e. MyWpfApp.sln. | ||
Wpf_Project_Path: Aimmy2\Aimmy2.csproj | ||
#Wap_Project_Name: MyWpfApp.Package.wapproj | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Install the .NET Core workload | ||
- name: Install .NET Core | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | ||
- name: Setup MSBuild.exe | ||
uses: microsoft/setup-msbuild@v2 | ||
|
||
# Restore the application | ||
- name: Restore the Wpf application to populate the obj folder | ||
run: msbuild $env:Solution_Path /t:Restore /p:Configuration=$env:Configuration /p:RuntimeIdentifier=$env:RuntimeIdentifier | ||
env: | ||
Configuration: Debug | ||
RuntimeIdentifier: win-${{ matrix.targetplatform }} | ||
|
||
# Build the Windows Application Packaging project | ||
- name: Build release x64 | ||
run: msbuild $env:Solution_Path /p:Platform=$env:TargetPlatform /p:Configuration=$env:Configuration /p:UapAppxPackageBuildMode=$env:BuildMode /p:AppxBundle=$env:AppxBundle /p:PackageCertificateKeyFile=$env:SigningCertificate /p:PackageCertificatePassword=${{ secrets.Pfx_Key }} | ||
env: | ||
AppxBundle: Never | ||
BuildMode: SideLoadOnly | ||
Configuration: Release | ||
TargetPlatform: ${{ matrix.targetplatform }} | ||
|
||
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: aimmycuda | ||
path: Aimmy2\bin\x64\Release\ |