Skip to content

Commit

Permalink
Merge pull request #80 from payjp/feature/publish-to-pods
Browse files Browse the repository at this point in the history
GHAでCocoaPodsにリリースする
  • Loading branch information
yatatsu authored Aug 30, 2024
2 parents 1b92d95 + f8a4bd2 commit fd7ac16
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: release

on:
release:
types: [published]

jobs:
release:
runs-on: macos-14
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: |
bundle config set deployment 'true'
bundle config set clean 'true'
bundle install --jobs 4 --retry 3
- name: lint podspec
run: bundle exec fastlane ios lint_podspec
- name: publish to pod trunk
run: |
bundle exec pod trunk push PAYJP.podspec
bundle exec pod trunk push PAYJPFlutterCore.podspec
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

0 comments on commit fd7ac16

Please sign in to comment.