Comments (1)
If you have this error its probably a typo somewhere with your GitHub secrets. Here was my typo - see extra space below after the dollar sign.
name: build-ios-staging
on:
push:
branches:
- "staging"
jobs:
build:
runs-on: macos-latest
environment: staging_environment
steps:
- name: Deploy iOS staging to AppCenter via Fastlane
uses: actions/[email protected]
- run: yarn fastlane:ios:staging
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
APP_CENTER_ACCESS_TOKEN: ${{ secrets.APP_CENTER_ACCESS_TOKEN }}
MATCH_GIT_BASIC_AUTHORIZATION: $ {{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
should be
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
from fastlane.
Related Issues (20)
- App version and build number arguments no working with upload_to_testflight HOT 1
- Available plugins are not updated since March 2021 HOT 1
- explicit provisioningProfiles mapping doesn't override Xcode project settings HOT 2
- ERROR ITMS-90161: Invalid Provisioning Profile on TestFlight upload HOT 3
- Can't use the "default" folder to remove the screenshots in Apple Appstore
- Slack action description is unclear HOT 3
- `upload_to_testflight` hangs forever
- Unable to add Merchant ID because Merchant ID limit 100 has been exceeded HOT 1
- Failing to complete a staged rollout for a release containing a retained bundle
- Ineligible devices are returned by Device.all() with `include_disabled: false` HOT 2
- build_app not calling -exportOptionsPlist HOT 1
- Zip not found after upgrading fastlane HOT 1
- Unable to update macOS app metadata while iOS app is in Pending Developer Release: Cannot update languages - could not find an editable info
- [supply] can't upload changelog unless all languages are translated
- [supply] ignores skip_upload_changelogs
- Invalid application specific password provided
- Available language codes for Android HOT 1
- [Regression] `enable_services` fails if the App Id Prefix doesn't match Team ID HOT 1
- `match` with App Store Connect key will lead to failure of decoding private key (and the key value compromised)
- gym xcarchive wrong folder name format HOT 2
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from fastlane.