MMAPI: fix adpcm converting #10
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: Android development CI | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: 'true' | |
- name: set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Decode Keystore | |
env: | |
ENCODED_KEYSTORE: ${{ secrets.SIGNING_KEY }} | |
ENCODED_PROPS: ${{ secrets.KEYSTORE_PROPERTIES }} | |
run: | | |
echo $ENCODED_KEYSTORE | base64 -di > keystore.jks | |
echo $ENCODED_PROPS | base64 -di > keystore.properties | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Calculate version suffix | |
run: | |
echo "VERSION_SUFFIX=-${GITHUB_SHA::7}" >> $GITHUB_ENV | |
- name: Build with Gradle | |
run: ./gradlew assembleEmulatorRelease | |
- name: Prepare artifact | |
run: | | |
mkdir -p artifact/mapping | |
mv app/build/outputs/native-debug-symbols/**/* artifact | |
mv app/build/outputs/mapping/**/* artifact/mapping | |
(cd artifact && zip -r "$OLDPWD/symbols.zip" .) | |
- name: GitHub Release | |
uses: "marvinpinto/[email protected]" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "continuous" | |
title: "Development Build" | |
files: | | |
app/build/outputs/apk/**/*.apk | |
symbols.zip | |
- name: Upload Artifact (bin) | |
uses: actions/[email protected] | |
with: | |
name: "Binary" | |
path: app/build/outputs/apk/emulator/release/*.apk | |
- name: Upload a Build Artifact (sym) | |
uses: actions/[email protected] | |
with: | |
name: "Symbols" | |
path: artifact |