version like this?
Some checks failed
Build and release release apps to production track / Get version (pull_request) Successful in 21s
Build and release release apps to production track / Build and upload ios app (pull_request) Failing after 1m58s

This commit is contained in:
Remy Moll 2025-04-28 12:37:07 +02:00
parent ff1563c4e8
commit b1413586d7

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 }}