This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex-mr_series-sherpa-onnx/.github/workflows/checksum.yaml
2025-01-06 11:03:31 +08:00

22 lines
547 B
YAML

name: Create checksum
on:
schedule:
- cron: "0 1 * * *" # Runs at 1:00 AM UTC daily
workflow_dispatch:
jobs:
checksum:
if: github.repository_owner == 'k2-fsa'
runs-on: macos-latest
strategy:
matrix:
tag: [null, asr-models, tts-models, kws-models, speaker-recongition-models, audio-tagging-models, punctuation-models]
steps:
- name: Run checksum action
uses: thewh1teagle/checksum@v1
with:
tag: ${{ matrix.tag }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}