diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index c0463a7..772010f 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -45,12 +45,8 @@ jobs: - name: Archive build artifacts uses: actions/upload-artifact@v2 with: - name: build-artifacts - path: | - build/app/outputs/flutter-apk/app-arm64-v8a-prod-release.apk - build/app/outputs/flutter-apk/app-armeabi-v7a-prod-release.apk - build/app/outputs/flutter-apk/app-x86_64-prod-release.apk - build/app/outputs/bundle/prodRelease/app-prod-release.aab + name: android-release + path: build/app/outputs/bundle/prodRelease/app-prod-release.aab release: name: Create GitHub Release @@ -61,16 +57,12 @@ jobs: - name: Download build artifacts uses: actions/download-artifact@v2 with: - name: build-artifacts + name: android-release - name: List downloaded files run: ls -R - name: Release uses: softprops/action-gh-release@v2 with: - files: | - build/app/outputs/flutter-apk/app-arm64-v8a-prod-release.apk - build/app/outputs/flutter-apk/app-armeabi-v7a-prod-release.apk - build/app/outputs/flutter-apk/app-x86_64-prod-release.apk - build/app/outputs/bundle/prodRelease/app-prod-release.aab + files: app-prod-release.aab env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/pubspec.yaml b/pubspec.yaml index fd10627..7f05f6a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ description: A new Flutter project. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.3.3+37 +version: 1.3.3+38 environment: sdk: ">=3.4.0 <4.0.0"