Merge pull request #75 from hazmi-e205/android14_support #5
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: deploy to dockerHub | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
create: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: softprops/action-gh-release@v1 | |
with: | |
draft: false | |
generate_release_notes: true | |
build: | |
needs: create | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
- name: replace version | |
run: ver=${{ steps.previoustag.outputs.tag }} && new_ver=${ver:1} && sed -i "s/SONIC_VERSION/${new_ver}/g" app/build.gradle | |
- name: set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew assembleDebug | |
- name: rename | |
run: mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/sonic-android-apk.apk | |
- name: Upload To Github Release | |
uses: xresloader/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
file: app/build/outputs/apk/debug/sonic-android-apk.apk | |
tag_name: ${{ steps.previoustag.outputs.tag }} | |
update_latest_release: true | |
draft: false | |