From 7192e576a9296ed6cfc63aab32bda37036892811 Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:07:45 +0200 Subject: [PATCH] feat: add checksum action (#1632) --- .github/workflows/checksum.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/checksum.yaml diff --git a/.github/workflows/checksum.yaml b/.github/workflows/checksum.yaml new file mode 100644 index 000000000..07af3768c --- /dev/null +++ b/.github/workflows/checksum.yaml @@ -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 }}