Browse Source

Merge pull request #95 from ente-io/build_fixes

Fix build pipeline
Neeraj Gupta 3 years ago
parent
commit
66da65446d
3 changed files with 12 additions and 4 deletions
  1. 3 3
      .github/workflows/release.yml
  2. 8 0
      .gitmodules
  3. 1 1
      pubspec.yaml

+ 3 - 3
.github/workflows/release.yml

@@ -42,7 +42,7 @@ jobs:
 
       # Build independent apk.
       - name: Build
-        run: flutter build apk --release --flavor independent
+        run: flutter build apk --release --flavor independent && mv build/app/outputs/flutter-apk/app-independent-release.apk build/app/outputs/flutter-apk/ente.apk
         env:
           SIGNING_KEY_PATH: '/home/runner/work/_temp/keystore/ente_photos_key.jks'
           SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
@@ -53,10 +53,10 @@ jobs:
       - uses: actions/upload-artifact@v2
         with:
           name: release-apk
-          path: build/app/outputs/flutter-apk/app-independent-release.apk
+          path: build/app/outputs/flutter-apk/ente.apk
 
       # Create a Github release
       - uses: ncipollo/release-action@v1
         with:
-          artifacts: "build/app/outputs/flutter-apk/app-independent-release.apk"
+          artifacts: "build/app/outputs/flutter-apk/ente.apk"
           token: ${{ secrets.GITHUB_TOKEN }}

+ 8 - 0
.gitmodules

@@ -1,3 +1,11 @@
+[submodule "thirdparty/chewie"]
+	path = thirdparty/chewie
+	url = https://github.com/ente-io/chewie.git
+
 [submodule "thirdparty/extended_image"]
 	path = thirdparty/extended_image
 	url = https://github.com/ente-io/extended_image.git
+
+[submodule "thirdparty/plugins"]
+	path = thirdparty/plugins
+	url = https://github.com/ente-io/plugins.git

+ 1 - 1
pubspec.yaml

@@ -11,7 +11,7 @@ description: ente photos application
 # 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: 0.3.33+243
+version: 0.3.34+244
 
 environment:
   sdk: ">=2.10.0 <3.0.0"