From 318128f42ce8c9f2e4e6944844c3600760704bab Mon Sep 17 00:00:00 2001 From: CrashOveride95 <40003130+CrashOveride95@users.noreply.github.com> Date: Sun, 24 Aug 2025 21:30:53 -0400 Subject: [PATCH] Fix CI typo that caused only libultra_rom to be built (#14) --- .github/workflows/ci_gcc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_gcc.yml b/.github/workflows/ci_gcc.yml index c6bbd48..b8642cf 100644 --- a/.github/workflows/ci_gcc.yml +++ b/.github/workflows/ci_gcc.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - version: [libultra, libultra_d, libultra_rom] + target: [libultra, libultra_d, libultra_rom] steps: - name: Checkout repository @@ -27,8 +27,8 @@ jobs: - name: Verify formatting on all files run: python3 tools/check_format.py --verbose - - name: Build ${{ matrix.version }} - run: make -j $(nproc) VERSION=${{ matrix.version }} + - name: Build ${{ matrix.target }} + run: make -j $(nproc) TARGET=${{ matrix.target }} - name: 'Upload Artifact' uses: actions/upload-artifact@v4