Skip to content

Commit

Permalink
Merge pull request #1 from ThePinkUnicorn6/workflow-testing
Browse files Browse the repository at this point in the history
Add workflow to build the server.
  • Loading branch information
ThePinkUnicorn6 authored Nov 3, 2023
2 parents 9e1873d + 55d422e commit 8fce444
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on: push

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET 7.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x
- name: Restore dependencies
run: dotnet restore NeaServer.sln
- name: Build
run: dotnet build NeaServer.sln --no-restore --self-contained

- uses: actions/upload-artifact@v3
with:
name: Server Build
path: bin/Debug/net7.0/*
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

0 comments on commit 8fce444

Please sign in to comment.