Skip to content

Commit

Permalink
[chore] #135 빌드 테스트용 워크플로우 수정 및 fastlane test 실행 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Oct 2, 2024
1 parent f9b66a4 commit 8959105
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
MATCH_URL: ${{ secrets.MATCH_URL }}
APP_STORE_CONNECT_TEAM_ID: ${{ secrets.APP_STORE_CONNECT_TEAM_ID }}
DEVELOPMENT_TEAM: ${{ secrets.DEVELOPMENT_TEAM }}
run: fastlane test
run: |
fastlane test
make test
- name: Build Test
run: fastlane build
20 changes: 3 additions & 17 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,38 +24,24 @@ platform :ios do
app_identifier:["com.pokitmons.pokit"],
readonly: true
)

Dir.chdir("../") do
sh("make release")
end
end

lane :test do
setup_ci

match(
type: "appstore",
type: "development",
app_identifier:["com.pokitmons.pokit"],
readonly: true
)

Dir.chdir("../") do
sh("make test")
end
end

lane :build do
build_app(
workspace: "Pokit.xcworkspace",
scheme: "App",
export_method: "app-store",
export_options: {
method: "app-store",
signingStyle: "manual",
provisioningProfiles: {
"com.pokitmons.pokit" => "match AppStore com.pokitmons.pokit 1721720816"
}
}
configuration: "Debug",
export_method: "development",
)
end

Expand Down

0 comments on commit 8959105

Please sign in to comment.