Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kooritea committed Apr 26, 2024
1 parent d1a43db commit 73d38a0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 14 deletions.
42 changes: 31 additions & 11 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Retrieve version
run: echo VERSION=$(date "+%Y%m%d")-$(echo ${{ github.event.head_commit.id }} | head -c 7) >> $GITHUB_ENV
- name: Retrieve version name
run: echo VERSION_NAME=$(date "+%Y%m%d")_$(echo ${{ github.event.head_commit.id }} | head -c 7) >> $GITHUB_ENV

- name: Retrieve version code
run: echo VERSION_CODE=$(cat ${{ github.workspace }}/app/build.gradle | grep "versionCode" | grep -Eo "[0-9]+") >> $GITHUB_ENV

- name: Set version name
run: sed -i "s/versionName \".*\"/versionName \"${{ env.VERSION }}\"/" ${{ github.workspace }}/app/build.gradle
run: sed -i "s/versionName \".*\"/versionName \"${{ env.VERSION_NAME }}\"/" ${{ github.workspace }}/app/build.gradle

- name: Build with Gradle
run: ./gradlew assembleRelease
Expand All @@ -48,20 +51,37 @@ jobs:
BUILD_TOOLS_VERSION: ${{ env.BUILD_TOOL_VERSION }}

- name: Renamae
run: mv ${{ github.workspace }}/app/build/outputs/apk/release/app-release-unsigned-signed.apk ${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION }}.apk
run: mv ${{ github.workspace }}/app/build/outputs/apk/release/app-release-unsigned-signed.apk ${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION_NAME }}.apk

- name: Upload built apk
uses: actions/upload-artifact@v3
with:
name: release
path: ${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION }}.apk
path: ${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION_NAME }}.apk

- name: Release
uses: marvinpinto/action-automatic-releases@latest
uses: softprops/action-gh-release@v2
with:
name: "Auto Release ${{ env.VERSION_NAME }}"
tag_name: ${{ env.VERSION_CODE }}-${{ env.VERSION_NAME }}
token: "${{ secrets.TOKEN }}"
files: |
${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION_NAME }}.apk
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
src:
- 'app/build.gradle'
- name: Release lsposed module repository
if: steps.changes.outputs.src == 'true'
uses: softprops/action-gh-release@v2
with:
repo_token: "${{ secrets.TOKEN }}"
automatic_release_tag: ${{ env.VERSION }}
title: "Auto Release ${{ env.VERSION }}"
prerelease: false
name: "Auto Release ${{ env.VERSION_NAME }}"
tag_name: ${{ env.VERSION_CODE }}-${{ env.VERSION_NAME }}
repository: Xposed-Modules-Repo/com.kooritea.fcmfix
token: "${{ secrets.TOKEN_CLASSIC }}"
files: |
${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION }}.apk
${{ github.workspace }}/app/build/outputs/apk/release/fcmfix-ci-${{ env.VERSION_NAME }}.apk
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.kooritea.fcmfix"
minSdkVersion 29
targetSdkVersion 34
versionCode 38
versionName "0.7.0"
versionCode 39
versionName "dev"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -35,4 +35,4 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
}
}

0 comments on commit 73d38a0

Please sign in to comment.