Skip to content

Instantly share code, notes, and snippets.

View AttilaBerczik's full-sized avatar
🏠
Working from home

AttilaBerczik

🏠
Working from home
View GitHub Profile
@AttilaBerczik
AttilaBerczik / exportOptions.plist
Created November 27, 2021 18:15
Export settings for IOS CI/CD Pipeline
<?xml version=”1.0" encoding=”UTF-8"?>
<!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version=”1.0">
<dict>
<key>method</key>
<string>app-store</string>
<key>teamID</key>
<string>your id</string>
<key>provisioningProfiles</key>
<dict>
@AttilaBerczik
AttilaBerczik / macBuildScript.sh
Last active December 21, 2023 13:27
Build script for IOS CI/CD Pipeline
# Create build folder
cd
mkdir build
cd build
# Download repository from Bitbucket
git clone {your git repo}
cd {the name of your git repo}/
# Install dependencies
@AttilaBerczik
AttilaBerczik / bitbucket-pipelines.yml
Last active November 27, 2021 09:40
Bitbucket Pipeline for React Native IOS CI/CD Pipeline, upload the app for testers to App Store
pipelines:
branches:
develop:
# IOS Apple Appstore Publish to testers
- step:
name: Appstore publish to testers
deployment: IOS Internal
script:
- pipe: atlassian/ssh-run:0.3.1
variables: