Merge pull request #12 from ethankershaw/ethankershaw/fix-11 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: .Net Build | |
on: | |
pull_request: null | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
jobs: | |
build: | |
name: Github Actions Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.* | |
- name: Build Reason | |
run: echo ${{github.ref}} and ${{github.event_name}} | |
- name: Update Submodules | |
run: git submodule update --init --recursive | |
- name: Build | |
run: dotnet build --configuration Release --nologo |