Skip to content

Commit

Permalink
chore: 내부 배포 자동화
Browse files Browse the repository at this point in the history
  • Loading branch information
Heonbyeong committed Aug 2, 2024
1 parent 053caee commit d63fe51
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
1 change: 0 additions & 1 deletion .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- 'release/**'
- 'feature/**'

jobs:
release_deploy_job:
Expand Down
20 changes: 9 additions & 11 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ platform :android do
version_code: options[:new_version_code]
)

# git_add(
# path: ["./app/build.gradle.kts"]
# )
# git_commit(
# path: ["./app/build.gradle.kts"],
# message: "INCREMENT VERSION CODE"
# )
#
# push_to_git_remote
git_add(
path: ["./app/build.gradle.kts"]
)
git_commit(
path: ["./app/build.gradle.kts"],
message: "INCREMENT VERSION CODE"
)

push_to_git_remote
end

desc "Runs all the tests"
Expand All @@ -58,8 +58,6 @@ platform :android do

desc "Deploy a new version to the Google Play"
lane :deploy do
increment_code

gradle(
task: 'bundle',
flavor: "live",
Expand Down

0 comments on commit d63fe51

Please sign in to comment.