thewh1teagle
Committed by GitHub

feat: add checksum action (#1632)

  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 }}