Fix highlight in themes, pare down existing themes (#1479) #19
Workflow file for this run
This file contains hidden or 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
on: | |
push: | |
tags: | |
- "*-nightly" | |
name: Create Nightly | |
concurrency: | |
group: nightly | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Create Nightly | |
runs-on: ubuntu-latest | |
environment: nightly | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Set up Java | |
uses: actions/[email protected] | |
with: | |
distribution: "zulu" | |
java-version: "21" | |
- name: Build APK | |
env: | |
ENCODED_GOOGLE_SERVICES: ${{ secrets.ENCODED_GOOGLE_SERVICES }} | |
ENCODED_RELEASE_KEYSTORE: ${{ secrets.ENCODED_RELEASE_KEYSTORE }} | |
ENCODED_SECRETS_PROPERTIES: ${{ secrets.ENCODED_SECRETS_PROPERTIES }} | |
run: make deploy-free-nightly | |
- name: Create Nightly | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
generate_release_notes: true | |
draft: false | |
prerelease: true | |
files: | | |
app/build/outputs/apk/free/nightly/app-free-nightly.apk |