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 1ccfd6a commit fb5c072
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions .github/workflows/android-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,29 @@ jobs:

# 이 위까지는 만일 핫픽스로 급한 경우에 바로 main에 push 할 경우가 생길 수 있으므로 ci 보존

# Fastlane 위한 Ruby Setting
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true
publish_aab:
runs-on: ubuntu-latest

# 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 }}
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:
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 fb5c072

Please sign in to comment.