Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Oct 9, 2024
1 parent 47bb542 commit 18fcfd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/migration-sql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
- name: Print changed migrations
if: steps.migrations-changed.outputs.changed == 'true'
run: |
first_migration=$(jq -r '.[0] // empty' ~/files_created.json)
latest_migration=$(jq -r '.[-1] // empty' ~/files_created.json)
first_migration=$(echo '${{ steps.get-changed-files.outputs.files_created }}' | jq -r '.[0] // empty')
latest_migration=$(echo '${{ steps.get-changed-files.outputs.files_created }}' | jq -r '.[-1] // empty')
./ci/print_revision_sql.sh $first_migration $latest_migration > /tmp/migration-sql-data/upgrade.sql
- name: Create artifact
Expand Down

0 comments on commit 18fcfd9

Please sign in to comment.