Skip to content

Commit 7636f52

Browse files
committed
chore: add missing ipfs gateway and project id env for test stack
1 parent 60a7bb1 commit 7636f52

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/build-and-deploy-test-stack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,5 @@ jobs:
7676
APP_ENV: test
7777
PDF_API_URL: ${{ secrets.PDF_API_URL }}
7878
KUBER_API_KEY: ${{ secrets.KUBER_API_KEY }}
79+
VITE_IPFS_GATEWAY: $${{secrets.IPFS_GATEWAY}}
80+
VITE_IPFS_PROJECT_ID: $${{secrets.IPFS_PROJECT_ID}}

tests/test-infrastructure/.env.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ BASE_DOMAIN=govtool.cardanoapi.io
77
GOVTOOL_TAG=test
88
APP_ENV=test
99
PDF_API_URL=
10-
KUBER_API_KEY=
10+
KUBER_API_KEY=
11+
VITE_IPFS_GATEWAY=""
12+
VITE_IPFS_PROJECT_ID=""

tests/test-infrastructure/docker-compose-govtool.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ services:
4848
VITE_METADATA_API_URL: https://${BASE_DOMAIN}/metadata-validation
4949
VITE_GTM_ID: ${GTM_ID}
5050
VITE_PDF_API_URL: ${PDF_API_URL}
51+
VITE_IPFS_GATEWAY: ${VITE_IPFS_GATEWAY}
52+
VITE_IPFS_PROJECT_ID: ${VITE_IPFS_PROJECT_ID}
5153
environment:
5254
VIRTUAL_HOST: https://${BASE_DOMAIN}
5355
networks:

0 commit comments

Comments
 (0)