mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
430 B
27 lines
430 B
name: Build ErsatzTV |
|
|
|
on: |
|
push: |
|
branches: [ main ] |
|
|
|
jobs: |
|
|
|
build: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Checkout repository |
|
uses: actions/checkout@v4 |
|
|
|
- name: Setup .NET |
|
uses: actions/setup-dotnet@v4 |
|
with: |
|
dotnet-version: '8.0.x' |
|
|
|
- name: Restore |
|
run: dotnet restore |
|
|
|
- name: Build |
|
run: dotnet build --configuration Release --no-restore
|
|
|