Skip to content

broadcast config changes to google app windows (#554) #827

broadcast config changes to google app windows (#554)

broadcast config changes to google app windows (#554) #827

Workflow file for this run

name: main
on:
push:
branches:
- "*"
pull_request:
jobs:
ci:
uses: ./.github/workflows/ci.yml
build:
needs: ci
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- if: startsWith(matrix.os, 'macos')
run: bun run build:mac -- --publish never
env:
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
- if: startsWith(matrix.os, 'ubuntu')
run: bun run build:linux -- --publish never
- if: startsWith(matrix.os, 'windows')
run: bun run build:win -- --publish never
- uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ matrix.os }}
path: |
dist/*.*
!dist/*.yml