microsoft / app-store-vsts-extension

Visual Studio Team Services (VSTS) extension for performing continuous delivery to the App Store store from your automated CI builds
Other
93 stars 53 forks source link

Unable to release macOS pkg with TestFlight #299

Closed duykhiem closed 1 year ago

duykhiem commented 1 year ago

Issue Description

TestFlight is now supported macOS: https://testflight.apple.com/ But I can't release macOS pkg with TestFlight using the AppStoreRelease@1 task on Azure Pipeline.

  - task: AppStoreRelease@1
    displayName: TestFlight macOS
    inputs:
      serviceEndpoint: 'AppStore-Connection'
      releaseTrack: 'TestFlight'
      appIdentifier: 'com.my.app'
      appType: 'macOS'
      ipaPath: '$(Build.ArtifactStagingDirectory)/*-signed.pkg'
      appSpecificId: 'xxxxxxxx1'
      shouldSkipWaitingForProcessing: true
      shouldSkipSubmission: true

[12:29:52]: Error setting value '/Users/runner/work/1/a/myapp-1.0-signed.pkg' for option 'ipa'

[!] '/Users/runner/work/1/a/myapp-1.0-signed.pkg' doesn't seem to be an ipa file
##[error]Error: The process '/usr/local/lib/ruby/gems/3.0.0/bin/fastlane' failed with exit code 1
Finishing: TestFlight macOS
  - task: AppStoreRelease@1
    displayName: TestFlight macOS
    inputs:
      serviceEndpoint: 'AppStore-Connection'
      releaseTrack: 'TestFlight'
      appIdentifier: 'com.my.app'
      appType: 'macOS'
      appSpecificId: 'xxxxxxxx1'
      shouldSkipWaitingForProcessing: true
      shouldSkipSubmission: true
      skipBinaryUpload: true
      fastlaneArguments: '--pkg "$(Build.ArtifactStagingDirectory)/Novus.NeXt.Gen-1.0-signed.pkg"'

##[error]Error: No IPA file found using pattern: /Users/runner/work/1/s/**/*.ipa
Finishing: TestFlight macOS

Environment

More info

Previous related PR : https://github.com/microsoft/app-store-vsts-extension/pull/117 (This change only for Production release track) Previous related Issue: https://github.com/microsoft/app-store-vsts-extension/issues/158

DenisRumyantsev commented 1 year ago

@duykhiem thanks for reporting this issue. We are currently working on higher-priority issues and we will work on this one as soon as we can

vmapetr commented 1 year ago

Related PR - https://github.com/microsoft/app-store-vsts-extension/pull/306. Kudos to @martinh2011 for the contribution.

vmapetr commented 1 year ago

The fix was merged in the master branch and will be available with the next release.

DevEddy commented 1 year ago

I also getting this issue, when can we expect the release?

The last updated timestamp on https://marketplace.visualstudio.com/items?itemName=ms-vsclient.app-store is still 29.6.2022, 15:31:42.

vmapetr commented 1 year ago

@DevEddy version 1.218.0 now is available on the marketplace - https://marketplace.visualstudio.com/items?itemName=ms-vsclient.app-store

DevEddy commented 1 year ago

Hey @vmapetr thank you, I can confirm the fix.