diff --git a/.github/workflows/deploy-production.yaml b/.github/workflows/deploy-production.yaml index a0eca20530..9bab3d541c 100644 --- a/.github/workflows/deploy-production.yaml +++ b/.github/workflows/deploy-production.yaml @@ -6,7 +6,7 @@ on: - main permissions: id-token: write # This is required for requesting the JWT - contents: read # This is required for actions/checkout + contents: read # This is required for actions/checkout jobs: deploy: name: Build & Deploy production using SST @@ -18,6 +18,9 @@ jobs: ONE_INCH_API_URL: ${{ secrets.ONE_INCH_API_URL }} ONE_INCH_ALLOWED_SWAP_PROTOCOLS: ${{ secrets.ONE_INCH_ALLOWED_SWAP_PROTOCOLS }} ONE_INCH_SWAP_CHAIN_IDS: ${{ secrets.ONE_INCH_SWAP_CHAIN_IDS }} + ONE_INCH_API_SPOT_URL: ${{ secrets.ONE_INCH_API_SPOT_URL }} + ONE_INCH_API_SPOT_VERSION: ${{ secrets.ONE_INCH_API_SPOT_VERSION }} + ONE_INCH_API_SPOT_KEY: ${{ secrets.ONE_INCH_API_SPOT_KEY }} MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} SUBGRAPH_BASE: ${{ secrets.SUBGRAPH_BASE }} RPC_GATEWAY: ${{ secrets.RPC_GATEWAY }} diff --git a/.github/workflows/deploy-staging.yaml b/.github/workflows/deploy-staging.yaml index bd01a19f4c..0bece6340a 100644 --- a/.github/workflows/deploy-staging.yaml +++ b/.github/workflows/deploy-staging.yaml @@ -6,7 +6,7 @@ on: - dev permissions: id-token: write # This is required for requesting the JWT - contents: read # This is required for actions/checkout + contents: read # This is required for actions/checkout jobs: deploy: name: Build & Deploy staging using SST @@ -18,6 +18,9 @@ jobs: ONE_INCH_API_URL: ${{ secrets.ONE_INCH_API_URL }} ONE_INCH_ALLOWED_SWAP_PROTOCOLS: ${{ secrets.ONE_INCH_ALLOWED_SWAP_PROTOCOLS }} ONE_INCH_SWAP_CHAIN_IDS: ${{ secrets.ONE_INCH_SWAP_CHAIN_IDS }} + ONE_INCH_API_SPOT_URL: ${{ secrets.ONE_INCH_API_SPOT_URL }} + ONE_INCH_API_SPOT_VERSION: ${{ secrets.ONE_INCH_API_SPOT_VERSION }} + ONE_INCH_API_SPOT_KEY: ${{ secrets.ONE_INCH_API_SPOT_KEY }} MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} SUBGRAPH_BASE: ${{ secrets.SUBGRAPH_BASE }} RPC_GATEWAY: ${{ secrets.RPC_GATEWAY }}