From 0ec9e18046c4bf649e525e26ff6b4e797ce89cc3 Mon Sep 17 00:00:00 2001 From: otsmr Date: Sat, 19 Jul 2025 01:02:30 +0200 Subject: [PATCH] do not upload artifacts --- .github/workflows/release_github.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release_github.yml b/.github/workflows/release_github.yml index ad0aad0..8323c4f 100644 --- a/.github/workflows/release_github.yml +++ b/.github/workflows/release_github.yml @@ -46,25 +46,24 @@ jobs: - name: Build Android APK run: flutter build apk --release --split-per-abi - - name: Create Github Release - uses: actions/upload-artifact@v4 - with: - name: release-apk - path: build/app/outputs/flutter-apk/*.apk - retention-days: 2 + # - name: Create Github Release + # uses: actions/upload-artifact@v4 + # with: + # name: release-apk + # path: build/app/outputs/flutter-apk/*.apk + # retention-days: 2 - name: Extract pubspec version run: | echo "PUBSPEC_VERSION=$(grep -oP 'version:\s*\K[^+]+(?=\+)' pubspec.yaml)" >> $GITHUB_ENV - name: Upload Release Binaries (stable) - if: ${{ !inputs.dry_run && inputs.channel == 'stable' }} - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.18.0 with: token: ${{ secrets.GITHUB_TOKEN }} - tag: v${{ env.PUBSPEC_VERSION }} # mind the "v" prefix + tag: v${{ env.PUBSPEC_VERSION }} omitBodyDuringUpdate: true omitNameDuringUpdate: true omitPrereleaseDuringUpdate: true allowUpdates: true - artifacts: app* \ No newline at end of file + artifacts: build/app/outputs/flutter-apk/*.apk \ No newline at end of file