From 77142afc183110f43e8f6b6499bfc054b07de756 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 23 Oct 2023 01:06:15 +0200 Subject: [PATCH] added an mysqldump configuration --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7579d2b6..e401e12d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,6 +59,8 @@ jobs: CI_AUTO_MIGRATION: "true" DB_DSN: root:super_secret_passw0rd@tcp(localhost:3300)/campus_db?charset=utf8mb4&parseTime=True&loc=Local ENVIRONMENT: dev + - name: export auto databases + run: mysqldump --host localhost:3300 --user root --password super_secret_passw0rd --no-data campus_db --result-file=./auto.sql && cat ./auto.sql build: runs-on: ubuntu-latest needs: [test, test_migrations]