Skip to content

Commit

Permalink
chore: 🤖 use prod environment vars in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
heldrida committed Jun 24, 2024
1 parent 219e3a4 commit fb765da
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ jobs:
build:
runs-on: ubuntu-latest
env:
UI__APP_URL: https://staging.fleeksandbox.xyz
SDK__GRAPHQL_API_URL: https://graphql.service.staging.fleeksandbox.xyz/graphql
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
IPFS_GATEWAY_HOSTNAME: "gateway-ipfs.fleek.xyz"
SDK__AUTH_APPS_URL: "https://auth-apps.service.fleek.xyz"
SDK__GRAPHQL_API_URL: "https://graphql.service.fleek.xyz/graphql"
SDK__IPFS__STORAGE_API_URL: "https://storage-ipfs.service.fleek.xyz"
SDK__UPLOAD_PROXY_API_URL: "https://uploads.service.fleek.xyz"
SITE_SLUG_DOMAIN: "on-fleek.app"
UI__APP_URL: "https://app.fleek.xyz"
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
IPFS_GATEWAY_HOSTNAME: "gateway-ipfs.staging.fleeksandbox.xyz"
SDK__AUTH_APPS_URL: "https://auth-apps.service.staging.fleeksandbox.xyz"
SDK__GRAPHQL_API_URL: "https://graphql.service.staging.fleeksandbox.xyz/graphql"
SDK__IPFS__STORAGE_API_URL: "https://storage-ipfs.service.staging.fleeksandbox.xyz"
SDK__UPLOAD_PROXY_API_URL: "https://uploads.service.staging.fleeksandbox.xyz"
SITE_SLUG_DOMAIN: "stg.on-fleek-test.app"
UI__APP_URL: "https://staging.fleeksandbox.xyz"
IPFS_GATEWAY_HOSTNAME: "gateway-ipfs.fleek.xyz"
SDK__AUTH_APPS_URL: "https://auth-apps.service.fleek.xyz"
SDK__GRAPHQL_API_URL: "https://graphql.service.fleek.xyz/graphql"
SDK__IPFS__STORAGE_API_URL: "https://storage-ipfs.service.fleek.xyz"
SDK__UPLOAD_PROXY_API_URL: "https://uploads.service.fleek.xyz"
SITE_SLUG_DOMAIN: "on-fleek.app"
UI__APP_URL: "https://app.fleek.xyz"
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit fb765da

Please sign in to comment.