#12908·CocoaPods

New pod failing to publish to trunk

Author: LowAmmoCreated Jun 18, 2026Updated Jul 13, 2026

Report

What did you do?

run pod repo update & pod install --repo-update

What did you expect to happen?

Pull down a newly published pod dependency

What happened instead?

Continuing to get an error that the new pod can't be found

CocoaPods Environment

Stack

   CocoaPods : 1.16.2
        Ruby : ruby 3.4.6 (2025-09-16 revision dbd83256b1) +PRISM [arm64-darwin24]
    RubyGems : 3.7.1
        Host : macOS 26.5.1 (25F80)
       Xcode : 26.5 (17F42)
         Git : git version 2.50.1 (Apple Git-155)
Ruby lib dir : /opt/homebrew/Cellar/ruby/3.4.6/lib
Repositories : cerner-ios-cocoapod-release-specs - git - git@XXXXXXXX:ios/cocoapod-release-specs.git @ 7756f449e50272d29c1167e6d1803f924ee53c4b

Installation Source

Executable Path: /opt/homebrew/Cellar/cocoapods/1.16.2_1/libexec/bin/pod

Plugins

cocoapods-deintegrate : 1.0.5
cocoapods-plugins     : 1.0.0
cocoapods-search      : 1.0.1
cocoapods-trunk       : 1.6.0
cocoapods-try         : 1.2.0

Podfile

ruby
#!/usr/bin/ruby -w
# encoding: UTF-8

#  Podfile
#  CareAwareCommonLibrary
#
#  Created by Kline,Kris on 06/20/17.
#  Copyright © 2017 XXXXXXXX. All rights reserved.


dir = File.dirname(__FILE__)
bpn = 'BasePodfile.rb'
cpd = File.join(dir, 'common-podfile-ios'); bpf = File.join(dir, bpn); cpbf = File.join(cpd, bpn)
system %{
    if git -c core.sshcommand="ssh -o ConnectTimeout=8" \
        clone --quiet --depth 1 --branch main git@XXXXXXXX:XXXXXXXX/common-podfile-ios.git #{cpd} \
        1>/dev/null 2>/dev/null;
    then
        mv #{cpbf} #{bpf};
    else
        echo $(tput setaf 9)Error downloading #{bpn}$(tput sgr0);
    fi
    rm -rf #{cpd};
}
load "BasePodfile.rb"


# Development Paths
#useDevelopmentPaths


setupCocoapodsPlatform


target 'XXXXXXXXCommonLib' do
    use_frameworks!

    pod 'XXXXXXXXCommonLibrary', :path => './'

    swift_format(['XXXXXXXXCommonLibrary', 'XXXXXXXXLibraryMock', 'XXXXXXXXLibraryTesting'])

    sort_project
    
    # Development Pods
    #pod 'XXXXXXXXLogging/File', :path => '../XXXXXXXX-logging-ios-lib'
    #pod 'UnifiedLogging', :path => '../unified-logging-ios-lib'
    
    pod 'SwiftJWT', :path => '../../3rdParties/Swift-JWT'
    pod 'BlueCryptor', :path => '../../3rdParties/BlueCryptor'
    pod 'BlueRSA', :path => '../../3rdParties/BlueRSA'
    pod 'BlueECC', :path => '../../3rdParties/BlueECC'
    pod 'KituraContracts', :path => '../../3rdParties/KituraContracts'
     pod 'LoggerAPI', :path => '../../3rdParties/LoggerAPI'
    #pod 'SwiftlyLogging', :path => '../../3rdParties/swift-logging'


    target 'XXXXXXXXCommonLibraryTests' do

        prepare_for_pod_build( 'XXXXXXXXCommonLibraryTests.xctest' )
        
        swift_format(['XXXXXXXXCommonLibraryTests'])
        clang_format(['XXXXXXXXCommonLibraryTests'])

        pod 'CwlPreconditionTesting', '~> 2.2'

    end

end


setupInstallers( enableSigning: false )

Project that demonstrates the issue

Shouldn't need to - just look at these links:

https://cocoapods.org/pods/SwiftlyLogging https://github.com/CocoaPods/Specs/blob/master/Specs/7/6/8/SwiftlyLogging/1.6.4/SwiftlyLogging.podspec.json

It shows up and exists - but seems like it's not getting copied over to the cdn trunk for some reason -

But trying to find "SwiftlyLogging" on the podspec trunk fails -

> pod search SwiftlyLogging

Setup completed
[!] Unable to find a pod with name, author, summary, or description matching `SwiftlyLogging`

And any attempts to reference it doesn't pull it down either:

> pod install

Using BasePodfile v.1.0.0-RC
iOS Deployment Target: 17.4
Analyzing dependencies
[!] Unable to find a specification for `SwiftlyLogging (~> 1.6)` depended upon by `LoggerAPI`

You have either:
 * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`.
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.

(the 'BasePodfile' is just a common Podfile shared because all of our repos...and has no impact on the ability for cocoapods to work, normally)