feat: add checksum action (#1632)
This commit is contained in:
20
.github/workflows/checksum.yaml
vendored
Normal file
20
.github/workflows/checksum.yaml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Create checksum
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 1 * * *" # Runs at 1:00 AM UTC daily
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
checksum:
|
||||
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 }}
|
||||
Reference in New Issue
Block a user