diff --git a/.github/workflows/inference_cache_llm.yml b/.github/workflows/inference_cache_llm.yml index 686edc968..d96f18b26 100644 --- a/.github/workflows/inference_cache_llm.yml +++ b/.github/workflows/inference_cache_llm.yml @@ -5,6 +5,9 @@ on: schedule: # Schedule the workflow to run every day at midnight UTC - cron: '0 0 * * *' + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/.github/workflows/inference_cache_stable_diffusion.yml b/.github/workflows/inference_cache_stable_diffusion.yml index 1bde05c4b..de05b73aa 100644 --- a/.github/workflows/inference_cache_stable_diffusion.yml +++ b/.github/workflows/inference_cache_stable_diffusion.yml @@ -5,6 +5,9 @@ on: schedule: # Schedule the workflow to run every Saturday at midnight UTC - cron: '0 0 * * 6' + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}