* escape space in command line * disable record button when no reference * notify when transcription working too long * fix release CI * fix UI & remove deprecated codes * clear zombie transcribe process when started * fix remove file when added a duplicated audio/video * update latest whisper for win32
26 lines
671 B
YAML
26 lines
671 B
YAML
name: Release Enjoy App
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
- name: install dependencies
|
|
run: yarn install
|
|
- name: publish
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
|
|
run: yarn publish:enjoy
|
|
- if: matrix.os == 'macos-latest'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PUBLISH_TOKEN }}
|
|
PACKAGE_OS_ARCH: arm64
|
|
run: yarn run publish:enjoy --arch=arm64
|