mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
* migrate build logic from previous branch * fix command * move .actrc file * clean up * use env vars * setup provisioning profile path within action * fix flow * fix fastfile flow and update react native * disable play store uploading * hard code xcode version * fixes * more provisioning debugging * fix keychain path * set keychain to what was created by the github action * attempt to build again * test fix * print xcode build settings * debug ios build * fix xcargs path * use manual code signing * save wip * fix building locally * fix variable * save wip * clean up long comand * clean up * install bundle and gems * install pods * fix pod installation * sort * better naming * fix android issues * update lock * clean up artifacts * format * save wip slack upload logic * prettier * fix indent * save wip * save wip * save wip * save wip * save wip * clean up * simplify slack calls * revert slack logic * save working slack upload example * make title nicer * clean up slack upload * upload paths * enable github commit * fix path * fix commit step * fix git committing * update markdown * fix git commit rule * better commit message * chore: incrementing ios build number for version 2.4.9 [skip ci] * better name --------- Co-authored-by: Self GitHub Actions <action@github.com>
21 lines
683 B
Ruby
21 lines
683 B
Ruby
source "https://rubygems.org"
|
|
|
|
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
|
|
ruby ">= 3.2"
|
|
|
|
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
|
|
gem "cocoapods", ">= 1.13", "!= 1.15.0", "!= 1.15.1"
|
|
gem "activesupport", ">= 6.1.7.5", "!= 7.1.0"
|
|
|
|
# Add fastlane for CI/CD
|
|
gem "fastlane", "~> 2.227.0"
|
|
|
|
group :development do
|
|
gem "dotenv"
|
|
# Exclude nokogiri for GitHub Actions and Act
|
|
gem "nokogiri", "~> 1.18", platform: :ruby unless ENV["GITHUB_ACTIONS"] || ENV["ACT"]
|
|
end
|
|
|
|
plugins_path = File.join(File.dirname(__FILE__), "fastlane", "Pluginfile")
|
|
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|