Update nightly-release.yml

Signed-off-by: HᴇCᴏᴅᴇs2ᴍᴜᴄʜ <wayne6324@gmail.com>
This commit is contained in:
HᴇCᴏᴅᴇs2ᴍᴜᴄʜ
2024-07-06 15:02:32 +00:00
committed by GitHub
parent 0fde3ab76e
commit 0c0ef30d6b

View File

@@ -64,3 +64,80 @@ jobs:
- name: No new commits - name: No new commits
if: needs.check-commits.outputs.has_new_commits == 'false' if: needs.check-commits.outputs.has_new_commits == 'false'
run: echo "No new commits found." run: echo "No new commits found."
build:
name: Build, Sign & Release
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GIT_BOT_TOKEN }}
- name: set up JDK 17
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Get weather.properties from secrets
run: printf "%s" "${{ secrets.WEATHER_PROPERTIES }}" > $GITHUB_WORKSPACE/weather.properties
- name: Build with Gradle
run: ./gradlew clean && ./gradlew assembleWithInternetRelease && ./gradlew assembleWithoutInternetRelease
- name: Sign APK - WithInternet
uses: ilharp/sign-android-release@v1.0.4
# ID used to access action output
id: sign_app_withInternet
with:
releaseDir: app/build/outputs/apk/withInternet/release
signingKey: ${{ secrets.SIGNINGKEY_BASE64 }}
keyAlias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 33.0.0
- name: Release to GitHub - WithInternet
uses: svenstaro/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GIT_BOT_TOKEN }}
file: ${{steps.sign_app_withInternet.outputs.signedFile}}
asset_name: EasyLauncher-Internet-${{ github.ref_name }}-Signed.apk
tag: nightly
overwrite: true
- name: Sign APK - WithoutInternet
uses: ilharp/sign-android-release@v1.0.4
# ID used to access action output
id: sign_app_withoutInternet
with:
releaseDir: app/build/outputs/apk/withoutInternet/release
signingKey: ${{ secrets.SIGNINGKEY_BASE64 }}
keyAlias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 33.0.0
- name: Release to GitHub - WithoutInternet
uses: svenstaro/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GIT_BOT_TOKEN }}
file: ${{steps.sign_app_withoutInternet.outputs.signedFile}}
asset_name: EasyLauncher-${{ github.ref_name }}-Signed.apk
tag: nightly
overwrite: true