From 8b2790c2f72cd9572f159f55284a3374a727e7df Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sat, 22 Mar 2025 14:06:58 -0600 Subject: [PATCH] Remove legacy frogress upload --- .github/workflows/build.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 227a69f18..fde3c9dd5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,21 +43,6 @@ jobs: git log -1 --pretty='{"id": "%H", "email": "%ae", "time": "%ad", "message": "%s"}' \ --date=format:"%Y-%m-%dT%H:%M:%S" > build/${{ matrix.version }}/progress-commit.json - # Upload progress if we're on the main branch - - name: Upload progress - # If you're using a different branch, change this to match - if: github.ref == 'refs/heads/main' - continue-on-error: true - env: - # Replace with your project slug - PROGRESS_SLUG: bfbb - # Set the API key in your repository secrets - PROGRESS_API_KEY: ${{ secrets.PROGRESS_API_KEY }} - run: | - python tools/upload_progress.py -b https://progress.decomp.club/ \ - -p $PROGRESS_SLUG -v ${{ matrix.version }} \ - build/${{ matrix.version }}/progress.json - # Upload map files - name: Upload map uses: actions/upload-artifact@v4