Skip to content

Commit

Permalink
Merge pull request #157 from pknu-wap/develop
Browse files Browse the repository at this point in the history
Release 1.0.0v
  • Loading branch information
jeongjaino authored Mar 11, 2024
2 parents 9e61605 + 18f66f8 commit 418dcde
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 22 deletions.
111 changes: 111 additions & 0 deletions .github/workflows/released-app-distribution.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
name: Released-App-Distribution
on:
push:
branches:
- 'release'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
cache: gradle

- name: add google-services.json
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json

- name: add local.properties
run: |
echo api_key=\"${{ secrets.API_KEY }}\" >> ./local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build

- name: Build release APK
run: ./gradlew assembleRelease

- name: Setup build tool version variable
shell: bash
run: |
BUILD_TOOL_VERSION=$(ls /usr/local/lib/android/sdk/build-tools/ | tail -n 1)
echo "BUILD_TOOL_VERSION=$BUILD_TOOL_VERSION" >> $GITHUB_ENV
echo Last build tool version is: $BUILD_TOOL_VERSION
- name: Sign APK
id: sign_app
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/apk/release
signingKeyBase64: ${{ secrets.KEY_BASE_64_RELEASE }}
alias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: ${{ env.BUILD_TOOL_VERSION }}

- name: Authenticate to Firebase
uses: google-github-actions/auth@v1
with:
credentials_json: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}

- name: Setup Firebase CLI
run: curl -sL https://firebase.tools | bash

- name: upload artifact to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1.7.0
with:
appId: ${{secrets.FIREBASE_APP_ID}}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: WAPP_QA
file: ${{steps.sign_app.outputs.signedReleaseFile}}

- name: Send Success Message
if: ${{ success() }}
uses: Ilshidur/action-discord@0.3.2
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
DISCORD_USERNAME: WAPP_BOT
DISCORD_AVATAR: https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true
DISCORD_EMBEDS: |
[
{
"author": {
"name": "WAPP Release",
"url": "https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true",
"icon_url": "https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true"
},
"title": "릴리즈 성공, 자 두 과 자 ~ 🔥🔥",
"color": 10478271,
"description": "메일에 새로운 릴리즈 앱 배송완료했어요!"
}
]
- name: Send Failure Message
if: ${{ failure() }}
uses: Ilshidur/action-discord@0.3.2
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
DISCORD_USERNAME: WAPP_BOT
DISCORD_AVATAR: https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true
DISCORD_EMBEDS: |
[
{
"author": {
"name": "WAPP Release",
"url": "https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true",
"icon_url": "https://github.com/pknu-wap/WAPP/blob/main/image/icon.png?raw=true"
},
"title": "릴리즈 실패, 누가 이렇게 하래. 😭😭",
"color": 13458524,
"description": "다시 릴리즈 해오세요. 삐빅"
}
]
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.wap.wapp.plugin

import com.wap.wapp.plugin.configure.configureApplicationVersion
import com.wap.wapp.plugin.configure.configureKotlinAndroid
import org.gradle.api.Plugin
import org.gradle.api.Project
Expand All @@ -12,6 +13,7 @@ class AndroidApplicationPlugin : Plugin<Project> {
apply("org.jetbrains.kotlin.android")
}
configureKotlinAndroid()
configureApplicationVersion()
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.wap.wapp.plugin.configure

import com.android.build.gradle.BaseExtension
import org.gradle.api.Project
import org.gradle.api.artifacts.VersionCatalogsExtension
import org.gradle.kotlin.dsl.getByType

internal fun Project.configureApplicationVersion() {
val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")

extensions.getByType<BaseExtension>().apply {
defaultConfig {
versionCode = libs.findVersion("versionCode").get().requiredVersion.toInt()
versionName = libs.findVersion("versionName").get().requiredVersion
}
}
}
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ org.gradle.configureondemand=true
org.gradle.configuration-cache=true
org.gradle.parallel=true
kotlin.incremental=true

# Temporary workaround for Kotlin Compiler OutOfMemoryError -> https://jb.gg/intellij-platform-kotlin-oom
kotlin.incremental.useClasspathSnapshot=false
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
compileSdk = "34"
minSdk = "26"
targetSdk = "34"
versionName = "1.0"
versionName = "1.0.0"
versionCode = "1"

gradleplugin = "8.1.2"
Expand Down
21 changes: 0 additions & 21 deletions release-note.txt

This file was deleted.

0 comments on commit 418dcde

Please sign in to comment.