diff --git a/.github/workflows/publish-ios-beta.yml b/.github/workflows/publish-beta.yml similarity index 88% rename from .github/workflows/publish-ios-beta.yml rename to .github/workflows/publish-beta.yml index 8aa65048..93e57468 100644 --- a/.github/workflows/publish-ios-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -27,7 +27,7 @@ jobs: run: echo -e '${{ secrets.APPSTORE_CONNECT_API_KEY_JSON }}' > appstore_connect_api_key.json working-directory: ./ios/fastlane - - name: 🚀 Run fastlane build and publish to TestFlight + - name: 🚀 Run iOS fastlane build and publish to TestFlight run: npm run fastlane:ios:beta env: APPSTORE_CONNECT_API_KEY_JSON: ${{ secrets.APPSTORE_CONNECT_API_KEY_JSON }} @@ -35,6 +35,9 @@ jobs: MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} MATCH_REPO_PAT: "anultravioletaurora:${{ secrets.SIGNING_REPO_PAT }}" + - name: 🚀 Run Android fastlane build + run: npm run fastlane:android:build + # Commit Fastlane Xcode build number increment - name: 🔢 Commit Xcode build number increment uses: stefanzweifel/git-auto-commit-action@v5 @@ -45,7 +48,7 @@ jobs: - name: 🎉 Create Github release uses: ncipollo/release-action@v1 with: - artifacts: "ios/Jellify.ipa" + artifacts: "ios/Jellify.ipa,android/Jellify.apk" name: ${{ env.VERSION_NUMBER }} prerelease: true tag: ${{ env.VERSION_NUMBER }}