프로필 설정화면 get api 연결 - 업데이트 api 구현 필요 #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: develop-merge | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Check Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Setup For Build | |
uses: ./.github/actions/setup | |
with: | |
google-services: ${{ secrets.GOOGLE_SERVICES }} | |
keystore: ${{ secrets.KEYSTORE }} | |
keystore-properties: ${{ secrets.KEYSTORE_PROPERTY }} | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
timeout-minutes: 10 | |
with: | |
arguments: :app:assembleDebug |