Definitely fixing a mistake Copilot made. Totally not mine.
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m21s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 1m41s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 1m44s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m45s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 2m4s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 2m19s

This commit is contained in:
2025-05-14 09:35:20 -04:00
parent f57406f981
commit d0d18fd603

View File

@@ -39,7 +39,11 @@ jobs:
- name: Run Migrations
run: |
docker run --rm -v $(PWD):/app siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path /app/db/migrations up
docker run \
--rm \
--volumes-from ${{ env.JOB_CONTAINER_NAME }} \
-w ${{ github.workspace }} \
siteworxpro/migrate:v4.18.3 -database "postgres://postgres:postgres@${{ env.JOB_CONTAINER_NAME }}-postgres:5432/postgres?sslmode=disable" -path /app/db/migrations up
LibraryAudit:
name: 🛡️ 🔒 Library Audit