From 7f1ba3d6992d4092617f199d8364672083b72d8a Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 23 Oct 2023 12:01:52 +0200 Subject: [PATCH] tested different delimiter mechanism --- .github/workflows/test_migration.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test_migration.yml b/.github/workflows/test_migration.yml index 7a9ad926..e1b75b4c 100644 --- a/.github/workflows/test_migration.yml +++ b/.github/workflows/test_migration.yml @@ -50,10 +50,9 @@ jobs: - name: export diff the migrations id: diff_migrations run: | - export message=atlas schema diff --from "maria://root:super_secret_passw0rd@localhost:3306/campus_db" --to "maria://root:super_secret_passw0rd@localhost:3300/campus_db" --format '{{ sql . " " }}' && EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) && echo "text<<$EOF" >> $GITHUB_OUTPUT && - echo "$message" >> $GITHUB_OUTPUT && + atlas schema diff --from "maria://root:super_secret_passw0rd@localhost:3306/campus_db" --to "maria://root:super_secret_passw0rd@localhost:3300/campus_db" --format '{{ sql . " " }}' >> $GITHUB_OUTPUT && echo "$EOF" >> $GITHUB_OUTPUT - name: Find Comment uses: peter-evans/find-comment@v2