This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
Merge pull request #45 from getspacetime/dependabot/npm_and_yarn/src/… #50
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: Build | |
on: push | |
jobs: | |
build-ci: | |
runs-on: macos-latest | |
name: Mac Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.x | |
- name: Install MAUI Workload | |
run: | | |
dotnet workload install maui-maccatalyst | |
- name: Restore Dependencies | |
run: dotnet restore src/Spacetime/Spacetime.csproj | |
- name: Build Spacetime | |
run: dotnet build src/Spacetime/Spacetime.csproj -f:net7.0-maccatalyst -c Release | |