From b1715212c68e616c231a0fca042d46e83e9b8f34 Mon Sep 17 00:00:00 2001 From: Merack Date: Mon, 2 Mar 2026 12:51:53 +0800 Subject: [PATCH] fix: dev workflow --- .github/workflows/dev.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 9cf8b33..97e4efa 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -49,28 +49,28 @@ jobs: echo "message=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT - name: Send build notification - uses: appleboy/telegram-action@v1 + uses: appleboy/telegram-action@master with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} message: "Dev Build | ${{ steps.commit.outputs.hash }} | ${{ steps.commit.outputs.message }}" - name: Send armeabi-v7a APK - uses: appleboy/telegram-action@v1 + uses: appleboy/telegram-action@master with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} document: build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk - name: Send arm64-v8a APK - uses: appleboy/telegram-action@v1 + uses: appleboy/telegram-action@master with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} document: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk - name: Send x86_64 APK - uses: appleboy/telegram-action@v1 + uses: appleboy/telegram-action@master with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }}