Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/scripts/validateActionsAndWorkflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ done

for ((i=0; i < ${#WORKFLOWS[@]}; i++)); do
WORKFLOW=${WORKFLOWS[$i]}

# Skip linting e2e workflow due to bug here: https://github.com/SchemaStore/schemastore/issues/2579
if [[ "$WORKFLOW" == './workflows/e2ePerformanceTests.yml'
|| "$WORKFLOW" == './workflows/testBuild.yml'
|| "$WORKFLOW" == './workflows/deploy.yml' ]]; then
continue
fi

ajv -s ./tempSchemas/github-workflow.json -d "$WORKFLOW" --strict=false &
ASYNC_PROCESSES[${#ACTIONS[@]} + i]=$!
done
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/buildAndroid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ on:

outputs:
AAB_FILE_NAME:
description: Name of the AAB file produced by this workflow.
value: ${{ jobs.build.outputs.AAB_FILE_NAME }}
APK_FILE_NAME:
description: Name of the APK file produced by this workflow.
value: ${{ jobs.build.outputs.APK_FILE_NAME }}
APK_ARTIFACT_NAME:
description: Name of the APK artifact.
value: ${{ jobs.build.outputs.APK_ARTIFACT_NAME }}

workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/testBuildHybrid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ on:

outputs:
ANDROID_LINK:
description: The link to the Android build.
value: ${{ jobs.androidHybrid.outputs.S3_APK_PATH }}
IOS_LINK:
description: The link to the iOS build.
value: ${{ jobs.iosHybrid.outputs.IOS_PATH }}

env:
Expand Down