From 0039fa61f43b8bbc4fa4b34a4e7edd22b6d2c1da Mon Sep 17 00:00:00 2001 From: Ylarod Date: Tue, 17 Jan 2023 16:23:59 +0800 Subject: [PATCH] [skip ci] fix typo --- .github/workflows/build-kernel-5.10.yml | 4 ++-- .github/workflows/build-kernel-5.15.yml | 4 ++-- .github/workflows/build-manager.yml | 4 ++-- .github/workflows/build-su.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-kernel-5.10.yml b/.github/workflows/build-kernel-5.10.yml index 4bd4e919..3664fdf9 100644 --- a/.github/workflows/build-kernel-5.10.yml +++ b/.github/workflows/build-kernel-5.10.yml @@ -134,10 +134,10 @@ jobs: path: android-kernel/out/android12-5.10/dist/boot-gz.img - name: Setup mutex for uploading - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' uses: ben-z/gh-action-mutex@v1.0-alpha-7 - name: Upload to telegram - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' env: CHAT_ID: ${{ secrets.CHAT_ID }} CACHE_CHAT_ID: ${{ secrets.CACHE_CHAT_ID }} diff --git a/.github/workflows/build-kernel-5.15.yml b/.github/workflows/build-kernel-5.15.yml index 92df9814..752bb0a3 100644 --- a/.github/workflows/build-kernel-5.15.yml +++ b/.github/workflows/build-kernel-5.15.yml @@ -91,9 +91,9 @@ jobs: - name: Setup mutex for uploading uses: ben-z/gh-action-mutex@v1.0-alpha-7 - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' - name: Upload to telegram - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' env: CHAT_ID: ${{ secrets.CHAT_ID }} CACHE_CHAT_ID: ${{ secrets.CACHE_CHAT_ID }} diff --git a/.github/workflows/build-manager.yml b/.github/workflows/build-manager.yml index da36e070..9693138e 100644 --- a/.github/workflows/build-manager.yml +++ b/.github/workflows/build-manager.yml @@ -78,9 +78,9 @@ jobs: path: manager/app/build/outputs/apk/release/*.apk - name: Setup mutex for uploading uses: ben-z/gh-action-mutex@v1.0-alpha-7 - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' - name: Upload to telegram - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' env: CHAT_ID: ${{ secrets.CHAT_ID }} CACHE_CHAT_ID: ${{ secrets.CACHE_CHAT_ID }} diff --git a/.github/workflows/build-su.yml b/.github/workflows/build-su.yml index 84fad3df..4ce18993 100644 --- a/.github/workflows/build-su.yml +++ b/.github/workflows/build-su.yml @@ -41,9 +41,9 @@ jobs: path: ./userspace/su/libs - name: Setup mutex for uploading uses: ben-z/gh-action-mutex@v1.0-alpha-7 - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' - name: Upload to telegram - if: github.event_name != 'pull_request' && steps.need_upload.output == 'true' + if: github.event_name != 'pull_request' && steps.need_upload.outputs.UPLOAD == 'true' env: CHAT_ID: ${{ secrets.CHAT_ID }} CACHE_CHAT_ID: ${{ secrets.CACHE_CHAT_ID }}