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 8a4dd1f commit 48241beCopy full SHA for 48241be
.github/workflows/test.yml
@@ -75,7 +75,8 @@ jobs:
75
#TODO PR Convert to develop branch flakeurl
76
- name: verify schema.sql is committed
77
run: |
78
- sudo nix run github:supabase/postgres/sam/dbmate-schemas#dbmate-tool -- --version ${{ env.PGMAJOR }}
+ GIT_SHA=${{github.sha}}
79
+ sudo nix run github:supabase/postgres/${GIT_SHA}#dbmate-tool -- --version ${{ env.PGMAJOR }}
80
if ! git diff --exit-code --quiet migrations/schema-${{ env.PGMAJOR }}.sql; then
81
echo "Detected changes in schema.sql:"
82
git diff migrations/schema-${{ env.PGMAJOR }}.sql
0 commit comments