Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHA: Add Git Permission #5181

Merged
merged 13 commits into from
Oct 28, 2024
Prev Previous commit
Next Next commit
Update fastlane/Fastfile
Co-authored-by: Aitor Viana <aitorvs@gmail.com>
  • Loading branch information
malmstein and aitorvs committed Oct 24, 2024
commit 90b60778d6a5cacf3d84da816938881888f56102
1 change: 1 addition & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ platform :android do

# Merge release branch into main and tag it
sh "git checkout main"
malmstein marked this conversation as resolved.
Show resolved Hide resolved
sh "git pull origin main"
sh "git merge --no-ff release/#{app_version}"
sh "git tag -a #{app_version} -m #{app_version}"
sh "git push origin main --tags"
Expand Down