Bump app/jni/SDL from aa9b4ec
to 4b19f7e
#99
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: Release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set tag | |
id: vars | |
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Git Submodule Update | |
run: git submodule update --init | |
- name: Build M8Client | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: --build-cache -PversionName=${{ steps.vars.outputs.tag }} build | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: app/build/outputs/apk/debug/app-debug.apk |