feat: Use StringBuilder #68
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: Build debug APK | |
on: | |
push: | |
branches: | |
- '**' | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Gradle | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/buildSrc/**/*.kt') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: "temurin" | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Generate Keystore file | |
run: | | |
echo "$KEYSTORE" > ./keystore.b64 | |
base64 -d -i ./keystore.b64 > ./keystore.jks | |
env: | |
KEYSTORE: ${{ secrets.RELEASE_KEYSTORE }} | |
- name: Generate local.properties | |
run: | | |
echo localKeyPassword=\"$KEY_PASSWORD\" >> local.properties | |
echo localKeyAlias=\"$KEY_ALIAS\" >> local.properties | |
echo localStoreFile=\"../keystore.jks\" >> local.properties | |
echo localStorePassword=\"$STORE_PASSWORD\" >> local.properties | |
shell: bash | |
env: | |
STORE_PASSWORD: ${{ secrets.RELEASE_PASSWORD }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | |
- name: Generate google-services.json | |
run: echo "$GOOGLE_SERVICES_JSON" > app/google-services.json | |
env: | |
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }} | |
- name: Build debug APK | |
run: ./gradlew assembleDebug | |
- name: Set MODIFIED_BRANCH_NAME | |
env: | |
name: "${{env.BRANCH_NAME}}" | |
run: | | |
echo "MODIFIED_BRANCH_NAME=${name/\//-}" >> $GITHUB_ENV | |
- name: Upload debug APK | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Koreatech-Board-${{ env.MODIFIED_BRANCH_NAME }}-debug | |
path: app/build/outputs/apk/debug/ |