From 849c778ca19088f213218ed6579dc77595d789a5 Mon Sep 17 00:00:00 2001 From: Bryce Buchanan Date: Fri, 13 Dec 2024 10:44:39 -0800 Subject: [PATCH] added pod trunk push to Tag-And-Release.yml --- .github/workflows/Tag-And-Release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/Tag-And-Release.yml b/.github/workflows/Tag-And-Release.yml index 8b336475..81849410 100644 --- a/.github/workflows/Tag-And-Release.yml +++ b/.github/workflows/Tag-And-Release.yml @@ -32,3 +32,11 @@ jobs: tag: ${{ steps.check-release.outputs.version }} prerelease: true generateReleaseNotes: true + - name: push cocoapods + env: + COCOAPODS_TRUNK_TOKEN=${{ secrets.COCOAPODS_TRUNK_TOKEN }} + id: cocoapod_trunk_push + run: | + pod trunk push OpenTelemetry-Swift-Api.podspec --allow-warnings + pod trunk push OpenTelemetry-Swift-Sdk.podspec --allow-warnings --synchronous +