We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c84716 commit af8eba6Copy full SHA for af8eba6
.github/workflows/deploy.yml
@@ -66,6 +66,8 @@ jobs:
66
run: flyctl deploy --config ${{ needs.setup.outputs.config }} --remote-only
67
68
deploy-meilisearch:
69
+ # only deploy on staging for now
70
+ if: needs.setup.outputs.environment == 'staging'
71
name: Deploy Meilisearch
72
needs: [setup, deploy-db]
73
environment: ${{ needs.setup.outputs.environment }}
@@ -80,6 +82,8 @@ jobs:
80
82
81
83
84
deploy-search:
85
86
87
name: Deploy Search
88
needs: [setup, deploy-meilisearch]
89
0 commit comments