From fa6745695fbcf742c6645b23fbb520d05da1fe27 Mon Sep 17 00:00:00 2001 From: Pat Nakajima Date: Wed, 20 Sep 2023 14:17:11 -0400 Subject: [PATCH] Create deploy_to_cocoapods.yml Trying to automate our cocoapod releases. --- .github/workflows/deploy_to_cocoapods.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/deploy_to_cocoapods.yml diff --git a/.github/workflows/deploy_to_cocoapods.yml b/.github/workflows/deploy_to_cocoapods.yml new file mode 100644 index 00000000..4203841f --- /dev/null +++ b/.github/workflows/deploy_to_cocoapods.yml @@ -0,0 +1,24 @@ +name: deploy_to_cocoapods + +on: + push: + tags: + - '*' + +jobs: + build: + runs-on: macOS-latest + + steps: + - uses: actions/checkout@v1 + + - name: Install Cocoapods + run: gem install cocoapods + + - name: Deploy to Cocoapods + run: | + set -eo pipefail + pod lib lint --allow-warnings + pod trunk push --allow-warnings + env: + COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}