added parts n new system support #59
Workflow file for this run
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: | |
#This job builds the Unity project | |
build-core: | |
name: 'buildpackage' | |
runs-on: ubuntu-22.04 | |
steps: | |
#Setup the Environment | |
- uses: actions/setup-dotnet@v2 | |
name: Setup .NET | |
with: | |
dotnet-version: '8.0.x' | |
#Create an output directory for artifacts | |
- name: Create Artifacts Staging Directory | |
shell: pwsh | |
run: mkdir ~/UWBStaging/ |