try android instead
All checks were successful
Build and release release apps to production track / Get version (pull_request) Successful in 18s
Build and release release apps to production track / Build and upload android app (pull_request) Successful in 10m15s

This commit is contained in:
Remy Moll 2025-04-28 12:56:08 +02:00
parent 531d2cde0c
commit 70bd98209b
2 changed files with 22 additions and 27 deletions

View File

@ -30,33 +30,31 @@ jobs:
outputs:
build_name: ${{ steps.version.outputs.BUILD_NAME }}
# build-android:
# name: Build and upload android app
# uses: ./.gitea/workflows/workflow_build-app-android.yaml
# with:
# build_type: release # for current testing
# build_name: ${{ needs.get-version.outputs.build_name }}
# secrets:
# ANDROID_SECRET_PROPERTIES_BASE64: ${{ secrets.ANDROID_SECRET_PROPERTIES_BASE64 }}
# ANDROID_GOOGLE_PLAY_JSON_BASE64: ${{ secrets.ANDROID_GOOGLE_PLAY_JSON_BASE64 }}
# ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
# ANDROID_GOOGLE_MAPS_API_KEY: ${{ secrets.ANDROID_GOOGLE_MAPS_API_KEY }}
# needs: get-version
build-ios:
name: Build and upload ios app
uses: ./.gitea/workflows/workflow_build-app-ios.yaml
build-android:
name: Build and upload android app
uses: ./.gitea/workflows/workflow_build-app-android.yaml
with:
build_type: release # for current testing
build_name: ${{ needs.get-version.outputs.build_name }}
secrets:
IOS_ASC_KEY_ID: ${{ secrets.IOS_ASC_KEY_ID }}
IOS_ASC_ISSUER_ID: ${{ secrets.IOS_ASC_ISSUER_ID }}
IOS_ASC_KEY: ${{ secrets.IOS_ASC_KEY }}
IOS_MATCH_REPO_SSH_KEY_BASE64: ${{ secrets.IOS_MATCH_REPO_SSH_KEY_BASE64 }}
IOS_MATCH_PASSWORD: ${{ secrets.IOS_MATCH_PASSWORD }}
IOS_GOOGLE_MAPS_API_KEY: ${{ secrets.IOS_GOOGLE_MAPS_API_KEY }}
ANDROID_SECRET_PROPERTIES_BASE64: ${{ secrets.ANDROID_SECRET_PROPERTIES_BASE64 }}
ANDROID_GOOGLE_PLAY_JSON_BASE64: ${{ secrets.ANDROID_GOOGLE_PLAY_JSON_BASE64 }}
ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
ANDROID_GOOGLE_MAPS_API_KEY: ${{ secrets.ANDROID_GOOGLE_MAPS_API_KEY }}
needs: get-version
# needs: build-android # technically not needed, but this prevents the builds from running in parallel
# build-ios:
# name: Build and upload ios app
# uses: ./.gitea/workflows/workflow_build-app-ios.yaml
# with:
# build_type: release # for current testing
# build_name: ${{ needs.get-version.outputs.build_name }}
# secrets:
# IOS_ASC_KEY_ID: ${{ secrets.IOS_ASC_KEY_ID }}
# IOS_ASC_ISSUER_ID: ${{ secrets.IOS_ASC_ISSUER_ID }}
# IOS_ASC_KEY: ${{ secrets.IOS_ASC_KEY }}
# IOS_MATCH_REPO_SSH_KEY_BASE64: ${{ secrets.IOS_MATCH_REPO_SSH_KEY_BASE64 }}
# IOS_MATCH_PASSWORD: ${{ secrets.IOS_MATCH_PASSWORD }}
# IOS_GOOGLE_MAPS_API_KEY: ${{ secrets.IOS_GOOGLE_MAPS_API_KEY }}
# needs: get-version
# # needs: build-android # technically not needed, but this prevents the builds from running in parallel

View File

@ -27,9 +27,6 @@ jobs:
outputs:
build_name: ${{ steps.version.outputs.BUILD_NAME }}
build-android:
name: Build and upload android app
uses: ./.gitea/workflows/workflow_build-app-android.yaml