Skip to content

Commit

Permalink
Create dotnet-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vitash authored Dec 6, 2024
1 parent c8d1293 commit 6b68172
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build, Publish

on:
push:
branches: [ main ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.x.x
- name: install workloads
run: dotnet workload restore AvaCs3.sln

- name: Build
run: dotnet build AvaCs3.Android -c Release

0 comments on commit 6b68172

Please sign in to comment.