From 1059d8b3360ad79908dc6cdb092676cf1bace466 Mon Sep 17 00:00:00 2001 From: pshenmic Date: Tue, 3 Sep 2024 10:24:01 +0700 Subject: [PATCH] Fix typo --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ff7d6e5c0..636107e89 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -71,8 +71,8 @@ jobs: docker run --rm --env-file testnet.env ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:api npm run db:drop docker run --rm --env-file testnet.env -v ./platform-explorer/packages/indexer/migrations:/migrations owl352/refinery_cli_docker ./refinery migrate -e DATABASE_URL -p /migrations - docker run --rm --env-file produciton.env ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:api npm run db:drop - docker run --rm --env-file produciton.env -v ./platform-explorer/packages/indexer/migrations:/migrations owl352/refinery_cli_docker ./refinery migrate -e DATABASE_URL -p /migrations + docker run --rm --env-file production.env ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:api npm run db:drop + docker run --rm --env-file production.env -v ./platform-explorer/packages/indexer/migrations:/migrations owl352/refinery_cli_docker ./refinery migrate -e DATABASE_URL -p /migrations start: runs-on: ubuntu-latest