fix: 추억 생성 및 수정 썸네일 사진 업로드 오류 수정 #535 #318
Workflow file for this run
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: Android CI for develop | |
on: | |
pull_request: | |
paths: 'android/**' | |
branches: [ "develop", "release-an", "main" ] | |
env: | |
BASE_URL: ${{ secrets.BASE_URL }} | |
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }} | |
LOCAL_DEFAULTS_PROPERTIES: ${{ secrets.LOCAL_DEFAULTS_PROPERTIES }} | |
UPLOAD_KEY_STORE_JKS: ${{ secrets.UPLOAD_KEY_STORE_JKS }} | |
KEY_STORE_PROPERTIES: ${{ secrets.KEY_STORE_PROPERTIES }} | |
jobs: | |
test: | |
name: Run Unit Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./android/Staccato_AN | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Create local.properties | |
run: | | |
touch local.properties | |
- name: Set Base Url in local.properties | |
run: | | |
echo "base_url=\"$BASE_URL\"" >> local.properties | |
- name: Create google-services.json | |
run: | | |
echo $GOOGLE_SERVICES_JSON > ./app/google-services.json | |
- name: Create secrets.properties | |
run: | | |
echo $SECRETS_PROPERTIES > secrets.properties | |
- name: Create local.defaults.properties | |
run: | | |
echo $LOCAL_DEFAULTS_PROPERTIES > local.defaults.properties | |
- name: Create KeyStore File and Properties | |
run: | | |
mkdir ./app/signing | |
echo "$UPLOAD_KEY_STORE_JKS" | base64 --decode > ./app/signing/upload_key_store.jks | |
echo "$KEY_STORE_PROPERTIES" > ./app/signing/keystore.properties | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run ktlint | |
run: ./gradlew ktlintCheck | |
- name: Run test | |
run: ./gradlew test | |
- name: Build with Gradle | |
run: ./gradlew build |