Cocoapods 1.15 current breaks the build #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Monitor Expo's Nightlies | ||
run-name: [${{ inputs.outcome }}] Expo's last nightlies build 🔍 | ||
on: | ||
workflow_call: | ||
inputs: | ||
outcome: | ||
description: 'Did the CI run pass or fail?' | ||
required: true | ||
type: string | ||
stage: | ||
description: 'Stage in the run that failed?' | ||
required: true | ||
type: string | ||
link: | ||
description: 'URL to the failing test' | ||
required: true | ||
type: string | ||
nightly_version: | ||
description: 'Version of the nightly' | ||
required: true | ||
type: string | ||
jobs: | ||
share-expo-nightlies-outcome: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: What was run by Expo? | ||
run: echo "Outcome: ${{ inputs.outcome }}\nStage: ${{ inputs.stage }}\nNightly Version: ${{ inputs.nightly_version }}\nLink: ${{ inputs.link }}" | ||
- name: Did Expo's nightly test pass? | ||
run: [[ "${{ inputs.outcome }}" != "pass" ]] && { exit 1; } |