Skip to content

Fix some default YouTube emotes not being shown as images #50

Fix some default YouTube emotes not being shown as images

Fix some default YouTube emotes not being shown as images #50

Workflow file for this run

name: CI
on:
push:
branches:
- main
- stable
tags:
- v*
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build app
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build app
run: ./gradlew bundlePlaystoreRelease
# Sign app bundle and create release for tags
- name: Sign app bundle
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'LiveTL/android'
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/bundle/playstoreRelease
signingKeyBase64: ${{ secrets.KEY_B64 }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.PASSWORD }}
keyPassword: ${{ secrets.PASSWORD }}
- name: Prepare build metadata
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'LiveTL/android'
run: |
set -x
echo "VERSION_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
if [[ "${{ github.event.ref }}" =~ "-beta" ]]
then
echo "GOOGLE_PLAY_TRACK=beta" >> $GITHUB_ENV
else
echo "GOOGLE_PLAY_TRACK=production" >> $GITHUB_ENV
fi
- name: Create release
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'LiveTL/android'
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.VERSION_TAG }}
name: LiveTL for Android ${{ env.VERSION_TAG }}
files: |
${{ env.SIGNED_RELEASE_FILE }}
draft: true
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to Google Play
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'LiveTL/android'
uses: r0adkll/[email protected]
with:
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_SERVICE_ACCOUNT_JSON }}
packageName: com.livetl.android
releaseFile: ${{ env.SIGNED_RELEASE_FILE }}
# mappingFile: app/build/outputs/mapping/playstoreRelease/mapping.txt
track: ${{ env.GOOGLE_PLAY_TRACK }}
whatsNewDirectory: distribution/whatsnew