From 5e37c1b7dc9428d80fe27b46652a3fd5080fb523 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Tue, 19 Sep 2023 01:52:17 +0800 Subject: [PATCH] ci: fix artifacts name --- .github/workflows/commit_ci.yml | 4 ++-- .github/workflows/pull_request_ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/commit_ci.yml b/.github/workflows/commit_ci.yml index a5b642e..4cc4295 100644 --- a/.github/workflows/commit_ci.yml +++ b/.github/workflows/commit_ci.yml @@ -72,12 +72,12 @@ jobs: uses: actions/upload-artifact@v3 with: path: ${{ env.DEBUG_APK_PATH }} - name: TSBattery-debug-${{ github.event.head_commit.id }} + name: ColorOSNotifyIcon-debug-${{ github.event.head_commit.id }} - name: Upload Artifacts (Release) uses: actions/upload-artifact@v3 with: path: ${{ env.RELEASE_APK_PATH }} - name: TSBattery-release-${{ github.event.head_commit.id }} + name: ColorOSNotifyIcon-release-${{ github.event.head_commit.id }} - name: Post Artifacts to Telegram run: | export debug=$(find ${{ env.APK_OUTPUT_PATH }}/debug -name "*.apk") diff --git a/.github/workflows/pull_request_ci.yml b/.github/workflows/pull_request_ci.yml index 4fe1f6c..dd40f13 100644 --- a/.github/workflows/pull_request_ci.yml +++ b/.github/workflows/pull_request_ci.yml @@ -62,9 +62,9 @@ jobs: uses: actions/upload-artifact@v3 with: path: ${{ env.DEBUG_APK_PATH }} - name: TSBattery-debug-${{ github.event.head_commit.id }} + name: ColorOSNotifyIcon-debug-${{ github.event.head_commit.id }} - name: Upload Artifacts (Release) uses: actions/upload-artifact@v3 with: path: ${{ env.RELEASE_APK_PATH }} - name: TSBattery-release-${{ github.event.head_commit.id }} \ No newline at end of file + name: ColorOSNotifyIcon-release-${{ github.event.head_commit.id }} \ No newline at end of file