Zhichao commited on
Commit
f8ea050
1 Parent(s): 1a37272

fix pipeline minor error (#75)

Browse files
Files changed (1) hide show
  1. .github/workflows/cicd.yaml +2 -2
.github/workflows/cicd.yaml CHANGED
@@ -74,8 +74,8 @@ jobs:
74
  - 'prisma/migrations/**'
75
 
76
  db_migration:
77
- needs: changes
78
- if: ${{ needs.changes.outputs.migrations == 'true' }}
79
  runs-on: ubuntu-latest
80
  environment: aws-development
81
 
 
74
  - 'prisma/migrations/**'
75
 
76
  db_migration:
77
+ needs: detect_migration_changes
78
+ if: ${{ needs.detect_migration_changes.outputs.migrations == 'true' }}
79
  runs-on: ubuntu-latest
80
  environment: aws-development
81