Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1588 This was previously running on Ubuntu, but just happened to work until the setup job assumed macOS. Run the job on macOS. Reviewed By: cipolleschi Differential Revision: D54563775 fbshipit-source-id: 2311029cf9b56527608e9cb000d5c09320607a99
24 lines
428 B
YAML
24 lines
428 B
YAML
name: Publish CocoaPods Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
name: Publish to CocoaPods trunk
|
|
runs-on: macos-13
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup-apple
|
|
|
|
- name: Publish Yoga
|
|
run: pod trunk push Yoga.podspec
|
|
env:
|
|
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
|