Skip to content

Commit

Permalink
feat: add checksum action (#1632)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle authored Dec 20, 2024
1 parent 86381e1 commit 7192e57
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/checksum.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 7192e57

Please sign in to comment.