Skip to content

Commit

Permalink
doc: add deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouYixun committed Nov 21, 2022
1 parent 10eb3a5 commit cfa0a36
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
50 changes: 50 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
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 11
uses: actions/setup-java@v2
with:
java-version: '11'
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

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
minSdk 21
targetSdk 31
versionCode 10
versionName "2.0.3"
versionName "SONIC_VERSION"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit cfa0a36

Please sign in to comment.