Skip to content

Commit

Permalink
Merge pull request #67 from vondraussen/master
Browse files Browse the repository at this point in the history
add build action workflow
  • Loading branch information
SciLor authored Jan 10, 2024
2 parents 9c8c89e + 8d507b2 commit f9c95c4
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: TeddyBench Windows

on:
push:
branches: [ "*" ]
pull_request:
branches: [ "master" ]

jobs:

build:

strategy:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest

env:
Solution_Name: Teddy.sln

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1
with:
msbuild-architecture: x64

- name: Nuget restore
run: nuget restore $env:Solution_Name

- name: Build the application
run: msbuild $env:Solution_Name -t:rebuild -property:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: TeddyBench-${{ matrix.configuration }}
path: TeddyBench/bin/${{ matrix.configuration }}/net48/win10-x64/TeddyBench.exe
env:
Configuration: ${{ matrix.configuration }}

0 comments on commit f9c95c4

Please sign in to comment.