diff --git a/.github/workflows/publish-to-cocoapods.yml b/.github/workflows/publish-to-cocoapods.yml index 858113f..4895e54 100644 --- a/.github/workflows/publish-to-cocoapods.yml +++ b/.github/workflows/publish-to-cocoapods.yml @@ -4,6 +4,8 @@ on: push: tags: - "*" + branches: + - '*' jobs: publish: @@ -11,13 +13,15 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@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 }} + # - 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 }}