mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-25 12:29:03 -05:00
09eb9d0c8f
Fix issue where top most artist folders were displayed instead of album artists from the library Make playlist view in the library tab more compact Fix app crash on sign out
36 lines
925 B
YAML
36 lines
925 B
YAML
name: Publish Over-the-Air Update
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-ota-update:
|
|
runs-on: macos-15
|
|
steps:
|
|
- name: 🛒 Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.SIGNING_REPO_PAT }}
|
|
|
|
- name: 🖥 Setup Node 20
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: 🧵 Run yarn
|
|
run: yarn install --network-concurrency 1
|
|
|
|
- name: 👩💻 Configure Git
|
|
run: |
|
|
git config --global user.email "violet@cosmonautical.cloud"
|
|
git config --global user.name "anultravioletaurora"
|
|
|
|
- name: 🤖 Publish Android Update
|
|
run: yarn sendOTA:android
|
|
env:
|
|
SIGNING_REPO_PAT: ${{ secrets.SIGNING_REPO_PAT }}
|
|
|
|
- name: 🍎 Publish iOS Update
|
|
run: yarn sendOTA:iOS
|
|
env:
|
|
SIGNING_REPO_PAT: ${{ secrets.SIGNING_REPO_PAT }}
|