Skip to content

Commit

Permalink
Create dotnet-desktop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Misaka-ZeroTwo authored Oct 27, 2023
1 parent 89c6b12 commit 648d7e1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:

build:
runs-on: windows-latest
steps:
- name: Setup .NET Core SDK
uses: actions/[email protected]

- uses: actions/[email protected]

- name: Restore Packages
run: nuget restore

- name: setup-msbuild
uses: microsoft/[email protected]

- name: Build app for release
run: msbuild EXILED-DLL-Archiver\EXILED-DLL-Archiver.csproj -t:rebuild -verbosity:diag -property:Configuration=Release

- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: EXILED-DLL-Archiver.exe
path: EXILED-DLL-Archiver/bin/Release/EXILED-DLL-Archiver.exe

0 comments on commit 648d7e1

Please sign in to comment.