Skip to content

Commit 7192e57

Browse files
authored
feat: add checksum action (#1632)
1 parent 86381e1 commit 7192e57

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/checksum.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Create checksum
2+
3+
on:
4+
schedule:
5+
- cron: "0 1 * * *" # Runs at 1:00 AM UTC daily
6+
workflow_dispatch:
7+
8+
jobs:
9+
checksum:
10+
runs-on: macos-latest
11+
strategy:
12+
matrix:
13+
tag: [null, asr-models, tts-models, kws-models, speaker-recongition-models, audio-tagging-models, punctuation-models]
14+
steps:
15+
- name: Run checksum action
16+
uses: thewh1teagle/checksum@v1
17+
with:
18+
tag: ${{ matrix.tag }}
19+
env:
20+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)