Skip to content

Commit

Permalink
reorder workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SFGrenade committed Jan 3, 2025
1 parent b4869b2 commit e296bdd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,34 +35,34 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4

- name: Install dependencies master
run: dotnet restore
working-directory: master

- name: Install dependencies MonoBehaviour
run: dotnet restore
working-directory: MonoBehaviour

- name: Build master
- name: Build MonoBehaviour
run: dotnet build -c Release
working-directory: MonoBehaviour

- name: Prepare MonoBehaviour artifacts for release
uses: actions/upload-artifact@v4
with:
name: Publish-MonoBehaviour
path: MonoBehaviour/bin/Publish

- name: Install dependencies master
run: dotnet restore
working-directory: master

- name: Build MonoBehaviour
- name: Build master
run: dotnet build -c Release
working-directory: MonoBehaviour
working-directory: master

- name: Prepare master artifacts for release
uses: actions/upload-artifact@v4
with:
name: Publish-Master
path: master/bin/Publish

- name: Prepare MonoBehaviour artifacts for release
uses: actions/upload-artifact@v4
with:
name: Publish-MonoBehaviour
path: MonoBehaviour/bin/Publish

release:
needs:
- build
Expand Down

0 comments on commit e296bdd

Please sign in to comment.