diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 706804d0..5bd24934 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,9 +8,6 @@ jobs: build: container: ghcr.io/zeldaret/oot-gc-vc-build:main runs-on: ubuntu-latest - defaults: - run: - shell: bash steps: # Checkout the repository (shallow clone) @@ -22,14 +19,17 @@ jobs: # Set Git config - name: Git config + shell: bash run: git config --global --add safe.directory "$GITHUB_WORKSPACE" # Copy the original files to the workspace - name: Prepare + shell: bash run: cp -R /orig . # Build the project - name: Build + shell: bash run: | python configure.py --map --binutils /binutils --compilers /compilers ninja all_source build/{mq-j,mq-u,mq-e,ce-j,ce-u,ce-e}/progress.json build/report.json @@ -38,6 +38,7 @@ jobs: - name: Upload progress if: github.ref == 'refs/heads/main' continue-on-error: true + shell: bash env: PROGRESS_SLUG: oot-vc PROGRESS_API_KEY: ${{ secrets.PROGRESS_API_KEY }}