Skip to content

Commit

Permalink
Merge pull request #14 from mizrael/build-workflow
Browse files Browse the repository at this point in the history
added Build workflow
  • Loading branch information
mizrael authored Jan 20, 2025
2 parents be41284 + 9bca23d commit 9f8b161
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
workflow_dispatch:
push:

jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:

- name: Checkout repository
uses: actions/checkout@v1

- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x'

- name: Build
run: dotnet build ./src/Blazorex.sln

0 comments on commit 9f8b161

Please sign in to comment.