正在显示
1 个修改的文件
包含
20 行增加
和
0 行删除
.github/workflows/checksum.yaml
0 → 100644
| 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 }} |
-
请 注册 或 登录 后发表评论