最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Automate upload to testflight using GitLab CICD - Stack Overflow

programmeradmin3浏览0评论

I'm trying to automate uploading my app to testflight using CI/CD on GitLab. I've set up the app store connect variables and set up fastlane and i'm getting No matching runner available even though I've tried using "macos" or "saas-macos-large-m2pro" the runner

My .gitlab-ci.yml looks like this:

stages:
  - debug
  - build
  - deploy

before_script:
  - cd PhoneCall
  - gem install bundler
  - bundle install

build_ios:
  stage: build
  tags:
    - saas-macos-large-m2pro  # Match the instance runner's tag
  image: macos-14-xcode-15
  script:
    - fastlane beta
  only:
    - main  # or the branch you use for releases
发布评论

评论列表(0)

  1. 暂无评论