From c7def601ece1922e4d161b8f9dac2e4b5a9fed1a Mon Sep 17 00:00:00 2001 From: rock Date: Fri, 11 Sep 2026 11:05:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20CI=20migration=20workflow=20=E2=80=94=20?= =?UTF-8?q?install=20Docker=20before=20migration=20runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add docker.io + DOCKER_HOST (tcp://localhost:2375) to migration workflow. Ensures Node + Docker available before migration action executes. Aligns with build.yaml environment setup. --- .gitea/workflows/migrate.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/migrate.yaml b/.gitea/workflows/migrate.yaml index bd33e4e..1683759 100644 --- a/.gitea/workflows/migrate.yaml +++ b/.gitea/workflows/migrate.yaml @@ -12,16 +12,17 @@ env: DB_PORT: "5432" DB_NAME: memory MIGRATIONS_DIR: crates/mem-store/migrations + DOCKER_HOST: tcp://localhost:2375 jobs: migrate: name: Run Migrations runs-on: rust steps: - - name: Install Node.js and psql + - name: Install Node.js, Docker, and psql run: | apt-get update - apt-get install -y nodejs postgresql-client + apt-get install -y nodejs docker.io postgresql-client - name: Checkout code uses: actions/checkout@v4