버전 코드, 버전 이름 년월일 순으로 나오도록 변경 #171
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 |