Skip to content

Commit

Permalink
refactor: Build/Test Workflows
Browse files Browse the repository at this point in the history
This breaks apart our build/test workflows to make them reusable. With the
aim of being able to reduce deplication, improve maintainability, and efficiency
of how the workflows run.
  • Loading branch information
techman83 committed May 4, 2024
1 parent 79c2fad commit c174057
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ jobs:
name: ${{ inputs.configuration }}-out
path: _build/out/
retention-days: 1
- run: echo "${{ toJson(github) }}"
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install runtime dependencies
run: apt-get install -y xvfb
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7'
- uses: actions/download-artifact@v4
with:
name: Debug-out
Expand All @@ -49,6 +53,7 @@ jobs:
needs: build-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: Release-repack-unsigned
Expand Down

0 comments on commit c174057

Please sign in to comment.