From cec34925c32215df9fe6b24fb633b5b5258de576 Mon Sep 17 00:00:00 2001 From: LEE SEOK GYU <54509842+likppi10@users.noreply.github.com> Date: Sun, 27 Aug 2023 01:40:53 +0900 Subject: [PATCH] ruby setting (#100) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ruby 세팅 수정 (#93) * ruby 세팅 수정 (#95) * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml * Update android-cd.yml --- .github/workflows/android-cd.yml | 45 +++++++++++++++++++------------- 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/.github/workflows/android-cd.yml b/.github/workflows/android-cd.yml index 84802e12..3173d98b 100644 --- a/.github/workflows/android-cd.yml +++ b/.github/workflows/android-cd.yml @@ -1,5 +1,3 @@ - - name: Android CD env: @@ -58,19 +56,30 @@ jobs: # 이 위까지는 만일 핫픽스로 급한 경우에 바로 main에 push 할 경우가 생길 수 있으므로 ci 보존 - # Fastlane 위한 Ruby Setting - - uses: ruby/setup-ruby@v1 - with: - ruby-version: 2.7.2 - bundler: "Gemfile.lock" - bundler-cache: true - - # Fastlane Setting - - name: Set Up fastlane And Publish Google Play - uses: maierj/fastlane-action@v2.2.0 - with: - lane: 'productionDeploy' - env: - SIGNING_KEY_ALIAS: ${{ secrets.KEY_ALIAS }} - SIGNING_KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} - SIGNING_STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} + publish_aab: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Setup JDK 17 + uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: 17 + # Fastlane 위한 Ruby Setting + - uses: ruby/setup-ruby@v1 + with: + ruby-version: 2.7.2 + bundler: "Gemfile.lock" + bundler-cache: true + + # Fastlane Setting + - name: Set Up fastlane And Publish Google Play + uses: maierj/fastlane-action@v2.2.0 + with: + lane: 'productionDeploy' + env: + SIGNING_KEY_ALIAS: ${{ secrets.KEY_ALIAS }} + SIGNING_KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} + SIGNING_STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}