Files
App/.github/workflows/publish-ota-update.yml
T
Violet Caulfield 09eb9d0c8f 415 feature playlist compact view or filter (#443)
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
2025-07-17 07:46:45 -05:00

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 }}