From abada13b64450a2c78a4e9c7a9101f839f648c39 Mon Sep 17 00:00:00 2001 From: Icedude907 <34080011+Icedude907@users.noreply.github.com> Date: Mon, 13 Nov 2023 16:19:17 +1300 Subject: [PATCH] Remove sumbols for github actions --- .github/workflows/build.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 283e6f8fb565..8eb5d44a3594 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,13 +18,6 @@ jobs: - name: Checkout uses: actions/checkout@master - - name: Checkout syms - if: ${{ github.event_name == 'push' }} - uses: actions/checkout@master - with: - path: symbols - ref: symbols - - name: Checkout agbcc uses: actions/checkout@master with: @@ -51,18 +44,3 @@ jobs: MODERN: 1 COMPARE: 0 run: make -j${nproc} all - - - name: Move symfiles - if: ${{ github.event_name == 'push' }} - run: | - cp -v *.sym symbols/ - echo "SYMBOLS_COMMIT_MSG=$( git log --format=%s ${GITHUB_SHA} )" >> $GITHUB_ENV - - - name: Update symfiles - if: ${{ github.event_name == 'push' }} - uses: EndBug/add-and-commit@v7 - with: - branch: symbols - cwd: "./symbols" - add: "*.sym" - message: ${{ env.SYMBOLS_COMMIT_MSG }}