Skip to content

Cocoapods 1.15 current breaks the build #1

Cocoapods 1.15 current breaks the build

Cocoapods 1.15 current breaks the build #1

name: Monitor Expo's Nightlies

Check failure on line 1 in .github/workflows/monitor-expo-nightlies.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/monitor-expo-nightlies.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
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; }