From c921952fd66eb844b956c79871383655577a4d31 Mon Sep 17 00:00:00 2001 From: Kari Barry Date: Mon, 18 Dec 2023 17:19:46 -0500 Subject: [PATCH] =?UTF-8?q?catch22:=20the=20db=20has=20to=20exist=20to=20c?= =?UTF-8?q?reate=20the=20db=20=F0=9F=94=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish-files.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-files.yml b/.github/workflows/publish-files.yml index 52401de..e19862c 100644 --- a/.github/workflows/publish-files.yml +++ b/.github/workflows/publish-files.yml @@ -24,7 +24,7 @@ jobs: shell: bash -l {0} run: | set -e - docker run -d --rm --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=secret -d docker.io/postgres + docker run -d --rm --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=secret -e POSTGRES_DB=tiled-example-data -d docker.io/postgres docker ps - name: Run Tiled commands