Skip to content

Bump version to 1.0.0-BETA-7 #27

Bump version to 1.0.0-BETA-7

Bump version to 1.0.0-BETA-7 #27

Workflow file for this run

name: Publish a Swift release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-BETA-[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-ALPHA-[0-9]+'
jobs:
publish-cocoapods-libraries:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Publish KMPObservableViewModelCoreObjC
run: pod trunk push KMPObservableViewModelCoreObjC.podspec --synchronous
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
- name: Publish KMPObservableViewModelCore
run: pod trunk push KMPObservableViewModelCore.podspec --synchronous
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
- name: Publish KMPObservableViewModelSwiftUI
run: pod trunk push KMPObservableViewModelSwiftUI.podspec --synchronous
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}