Questions tagged [fastlane-match]

85 questions
1
vote
2 answers

Fastlane Match - different branches of Project need to use different Apple Dev Accounts

I am just new to fastlane and have been tasked with deploying an application that is far from the norm. We have a Master branch and off of that branch we have several release/ branches. Each of these release/ branches is a different setup for…
1
vote
1 answer

Fastlane match provisioning profile set device

Does anybody know if it is possible to set which devices should be added to provisioning profile, using fastlane match?
Svetlin Stoev
  • 21
  • 1
  • 5
1
vote
0 answers

Code Signing Error with fastlane

I am getting error while building my application through fastlane. It gives me error that Code Signing Error: No profile for team '4TM2DK894Y' matching 'match Development bundle-id' found: Xcode couldn't find any provisioning profiles…
Umair Aamir
  • 1,624
  • 16
  • 26
1
vote
1 answer

Teamcity not picking up fastlane MATCH_PASSWORD environment variable

So i have a build configuration which has been configured with the build steps of command line. Within this I have set a environment parameter MATCH_PASSWORD and the value is the correct password which was generated and stored as a access key in…
Tunds
  • 1,804
  • 2
  • 15
  • 30
1
vote
1 answer

Fastlane match setup, using match appstore and match development

I am trying to setup fastlane match but am having trouble understanding this step: After running fastlane match init you can run the following to generate new certificates and profiles: fastlane match appstore fastlane match development What…
Kex
  • 8,023
  • 9
  • 56
  • 129
1
vote
1 answer

Fastlane - push certs to repo

I've submitted an app to App Store successfully using Fastlane. However I didn't had write permissions for the certs repo and I was not able to push them. Is there any way(action/command) to push the certs I have locally to the repo?
apetrov
  • 430
  • 5
  • 16
0
votes
0 answers

Error uploading the required certificate and profiles through fastlane to S3

I'm currently trying to store my certs and provisioning profiles in a S3 Bucket. When I run the fastlane match development/appstore command I get the following log [09:12:22]: Error accessing file, this might be due to fastlane's directory…
bikal
  • 1
0
votes
0 answers

Fastlane Match and GitHub Actions Can't access certificates repository

Hi I'm using Fastlane and GitHub actions in a React Native Project. Here's my steps: cd ios/ fastlane init fastlane match init Add url to repository, via https://github.com fastlane match development All the certificates are installed, but…
0
votes
1 answer

Fastlane Match with Gitlab Secure Files - Can't use different private token for code signing repo in CI/CD

We've been having some issues getting Fastlane Match to work in Gitlab CI using access tokens from within an existing CI pipeline. The setup: Repo for storing the certs / profiles: set up during fastlane init. We'll call this the "Cert Repo". Repo…
aaronfg
  • 474
  • 1
  • 5
  • 12
0
votes
1 answer

Fastlane with multiple certificates

Let us say that we have two valid certificates and two corresponding provisioning profiles for a single application. Let us say that we need this setup for reasons unrelated to the question. How can we use fastlane / fastlane match to use either one…
Terminus
  • 925
  • 10
  • 23
0
votes
1 answer

Get error for using nms, : 'module' object is not callable

My code is: keep, num_to_keep, _ = nms(proposals, scores, overlap=nms_thres, top_k=nms_topk) And I'm getting this error: File "C:\Users\RaSoul\LaneATT\lib\models\laneatt.py", line 129, in nms keep, num_to_keep, _ = nms(proposals, scores,…
0
votes
1 answer

Issue with Gitlab Runner for fastlane

I am trying to run runner on gitlab which is config with Fastlane through a pipeline, when I commit pipeline runs but failed every time. I am not sure what is the issue but it seems that my gitlab-ic.yml file is not working correctly
0
votes
1 answer

Using Fastlane for Push Notification services? (Wonderpush iOS, in this instance)

I have a Cordova app that builds successfully with Fastlane (using "match" and "fastlane-plugin-cordova"), and I'm trying to add push notifications to it - specifically, I'm using Wonderpush and trying to get this working on iOS initially, but I…
NeilS
  • 592
  • 3
  • 14
0
votes
1 answer

Does Fastlane have a default `username`?

I'm trying to replace a Fastlane Match username with a new one on a Mac. No matter what variables I export (MATCH_USERNAME, FASTLANE_USER) or files I edit on my machine (Matchfile), Fastlane keeps picking up a previous user when executing a plain…
0
votes
1 answer

Why does provisioning profile need to be set to distribution for both debug and release?

I'm attempting to build my react native app via fastlane on CircleCI. I'm using match for managing certificates/profiles and using these guides: Fastlane: CircleCI Integration CircleCI: Example configuration for using Fastlane on CircleCI CircleCI:…
AaronDS
  • 851
  • 2
  • 13
  • 31