diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 872b0c0..9511db2 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -15,9 +15,16 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 2.6.10 + bundler-cache: true - - name: Fastlane 설정하기 - run: brew install fastlane + - name: JDK17 준비하기 + uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + + - name: Gradle 애드온 준비하기 + uses: gradle/gradle-build-action@v2 - name: 시크릿 파일 생성하기 run: | diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 654c946..85e4cbf 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -31,9 +31,6 @@ platform :android do gradle_file_path: "./app/build.gradle.kts", ext_constant_name: "versionCode" ) - build_success("Dev 버전", version_name, version_code) - rescue => exception - build_fail("Dev 버전", version_name, version_code, exception) end desc "Deploy Internal Test Version to Google Play"