2022-05-10 01:36:28 +02:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Cancel Previous Runs
|
|
|
|
uses: styfle/cancel-workflow-action@0.9.0
|
|
|
|
with:
|
|
|
|
access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Checkout Repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up JDK 11
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: '11'
|
|
|
|
distribution: 'zulu'
|
|
|
|
|
|
|
|
- name: Grant execute permission for gradlew
|
2022-05-27 00:08:19 +02:00
|
|
|
run: chmod +x gradlew
|
2022-05-10 01:36:28 +02:00
|
|
|
|
|
|
|
- name: Build with Gradle
|
2022-05-27 00:08:19 +02:00
|
|
|
run: ./gradlew --no-daemon build
|
2022-05-10 01:36:28 +02:00
|
|
|
|
|
|
|
- name: Github Tag Bump
|
|
|
|
uses: anothrNick/github-tag-action@1.39.0
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
WITH_V: true
|
|
|
|
id: bump_version
|
|
|
|
|
|
|
|
- name: Upload APKs to Release
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file: ./app/build/outputs/apk/release/*.apk
|
|
|
|
tag: ${{ steps.bump_version.outputs.new_tag }}
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2022-05-27 00:08:19 +02:00
|
|
|
file_glob: true
|