Fastlane fixes working up to a full release #68

Merged
remoll merged 33 commits from frontend/fix-fastlane-metadata-location into main 2025-04-30 11:01:50 +00:00
Showing only changes of commit b1413586d7 - Show all commits

View File

@ -21,11 +21,10 @@ jobs:
git fetch origin main --tags
LATEST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
# remove the 'v' prefix from the tag name
echo "BUILD_NAME=${LATEST_TAG//v}" >> $GITHUB_ENV
echo "BUILD_NAME=${LATEST_TAG//v}" >> $GITHUB_OUTPUT
- name: Output the version that is being used
run: |
echo "Building for version ${{ env.BUILD_NAME }}"
echo "Building for version ${{ steps.version.outputs.BUILD_NAME }}"
# build-android:
@ -46,7 +45,7 @@ jobs:
uses: ./.gitea/workflows/workflow_build-app-ios.yaml
with:
build_type: release # for current testing
build_name: ${{ env.BUILD_NAME }}
build_name: ${{ steps.version.outputs.BUILD_NAME }}
secrets:
IOS_ASC_KEY_ID: ${{ secrets.IOS_ASC_KEY_ID }}
IOS_ASC_ISSUER_ID: ${{ secrets.IOS_ASC_ISSUER_ID }}