Skip to content

Commit

Permalink
attempt(fix): please just build and test the game
Browse files Browse the repository at this point in the history
  • Loading branch information
KTools2202 authored Jun 30, 2024
1 parent cc86724 commit 3dbe87b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ jobs:
checkName: ${{ matrix.testMode }} Test Results
coverageOptions: 'generateAdditionalMetrics;generateHtmlReport;generateBadgeReport;assemblyFilters:+my.assembly.*'

- name: List Workspace Contents
- name: Debug Artifacts Directory
if: always()
run: |
echo "Listing workspace contents..."
ls -R
echo "Artifacts Path: ${{ matrix.testMode }}-artifacts"
ls ${{ matrix.testMode }}-artifacts || echo "No artifacts found"
- name: Upload Test Results
uses: actions/upload-artifact@v3
Expand All @@ -99,6 +100,7 @@ jobs:
run: |
echo "Artifacts Path: ${{ matrix.testMode }}-artifacts"
echo "Coverage Path: ${{ steps.tests.outputs.coveragePath }}"
build:
name: Build Unity project
runs-on: ubuntu-latest
Expand All @@ -125,6 +127,10 @@ jobs:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
projectPath: './dist/'
projectPath: dist
targetPlatform: StandaloneWindows64


- name: Debug Build Directory
run: |
echo "Build Path: dist"
ls dist || echo "No build artifacts found"

0 comments on commit 3dbe87b

Please sign in to comment.