Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/R2NorthstarTools/VTOL
Browse files Browse the repository at this point in the history
  • Loading branch information
BigSpice committed Oct 21, 2023
2 parents 904f776 + e4bddba commit 329cfd0
Show file tree
Hide file tree
Showing 3 changed files with 888 additions and 11 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

name: .NET Core Desktop

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
PROJECT_PATH: VTOL_2.0.0/VTOL.csproj
jobs:
deploy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2

- run: mkdir -p /actions

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- run: dotnet restore ${{ env.PROJECT_PATH }}

- run: dotnet publish ${{ env.PROJECT_PATH }} -r win-x64 /p:PublishSingleFile=True --self-contained true --output "/actions"

- run: dir /actions

- uses: actions/checkout@v3

- uses: actions/upload-artifact@v3
with:
name: VTOL_NIGHTLY-artifact
path: /actions/VTOL.exe
Loading

0 comments on commit 329cfd0

Please sign in to comment.