From 68a806aa3e45b149001a54b80a758e91ae39edac Mon Sep 17 00:00:00 2001 From: ParticleG Date: Thu, 31 Oct 2024 19:07:32 +0800 Subject: [PATCH] - Disable other actions --- .github/workflows/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 03916745..ef9b5c31 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -164,7 +164,8 @@ jobs: build-android: runs-on: ubuntu-latest needs: [get-info, build-core, auto-test] - if: github.event_name != 'pull_request' + # if: github.event_name != 'pull_request' + if: ${{ !always()}} env: OUTPUT_FOLDER: ./build RELEASE_FOLDER: ./release @@ -237,6 +238,7 @@ jobs: build-linux: runs-on: ubuntu-latest needs: [get-info, build-core, auto-test] + if: ${{ !always()}} env: OUTPUT_FOLDER: ./build RELEASE_FOLDER: ./release @@ -320,7 +322,8 @@ jobs: build-macos-portable: runs-on: macos-latest needs: [get-info, build-core, auto-test] - if: github.event_name != 'pull_request' + # if: github.event_name != 'pull_request' + if: ${{ !always()}} env: OUTPUT_FOLDER: ./build RELEASE_FOLDER: ./release @@ -465,6 +468,7 @@ jobs: build-windows: runs-on: windows-latest + if: ${{ !always()}} needs: [get-info, build-core, auto-test] env: OUTPUT_FOLDER: ./build