Skip to content

list tidying

list tidying #1271

name: Publish Over-the-Air Update PR
on:
pull_request:
paths:
- 'src/**'
- 'App.tsx'
- '.github/workflows/publish-ota-update-pr.yml'
- 'scripts/ota-PR.sh'
- 'scripts/getRandomVersion.sh'
jobs:
publish-ota-update:
if: github.repository == 'Jellify-Music/App'
runs-on: [self-hosted, macOS]
steps:
- name: 🛒 Checkout
uses: actions/checkout@v6
with:
token: ${{ secrets.SIGNING_REPO_PAT }}
- name: 🖥 Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.4
- name: 🥟 Run bun
run: bun i
- name: 👩‍💻 Configure Git
run: |
git config --global user.email "violet@cosmonautical.cloud"
git config --global user.name "anultravioletaurora"
- name: 🤖 Publish Update
run: bun run sendOTA:PR ${{ github.event.pull_request.number }}
env:
SIGNING_REPO_PAT: ${{ secrets.SIGNING_REPO_PAT }}