Skip to content

Commit

Permalink
Update android-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
likppi10 committed Aug 26, 2023
1 parent 375877a commit 98cc5ff
Showing 1 changed file with 27 additions and 18 deletions.
45 changes: 27 additions & 18 deletions .github/workflows/android-cd.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


name: Android CD

env:
Expand Down Expand Up @@ -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/[email protected]
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/[email protected]
with:
lane: 'productionDeploy'
env:
SIGNING_KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}

0 comments on commit 98cc5ff

Please sign in to comment.