Skip to content

Commit

Permalink
Merge branch 'clean-workflows' into release-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Guretzki committed Jan 27, 2025
2 parents c1f3165 + 6be388f commit ac4233d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This workflow will public Cocoapods and Docs

name: Prepare Release

on:
workflow_dispatch:

jobs:

prepare-release:
runs-on: macos-14-xlarge # Apple Silicon Runner

steps:
- name: 🍱 Prepare Release
run: |
echo "Preparing Release"
22 changes: 22 additions & 0 deletions .github/workflows/publish_podspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish Adyen.podspec
on:
workflow_dispatch:

jobs:

publish:
runs-on: macos-14
steps:
- uses: actions/checkout@v4

- name: Select latest Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable

- name: Publish Adyen.podspec
run: |
gem install cocoapods
pod trunk push Adyen.podspec --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

0 comments on commit ac4233d

Please sign in to comment.