Skip to content

Commit

Permalink
ci: only try to migrate if something changed
Browse files Browse the repository at this point in the history
  • Loading branch information
chronark committed Dec 9, 2024
1 parent 50620ec commit ebdf85e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,17 @@ jobs:
clickhouse_migration_preview:
if: steps.changes.outputs.clickhouse == 'true'
needs: api_local_test
needs:
- changes
- api_local_test
uses: ./.github/workflows/job_clickhouse_migration_preview.yaml
secrets:
CLICKHOUSE_URL: ${{ secrets.CLICKHOUSE_URL }}

clickhouse_migration_production:
if: steps.changes.outputs.clickhouse == 'true'
needs:
- changes
- api_preview_test
- agent_staging_deployment
- clickhouse_migration_preview
Expand Down

0 comments on commit ebdf85e

Please sign in to comment.