diff --git a/.github/actions/release/action.yml b/.github/actions/release/action.yml index e5c4edb3..fdc7bb6b 100644 --- a/.github/actions/release/action.yml +++ b/.github/actions/release/action.yml @@ -66,7 +66,7 @@ runs: REACT_APP_MMI_BACKEND_BASE_URL: ${{ inputs.react-app-mmi-backend-base-url }} REACT_APP_MMI_ENVIRONMENT: ${{ inputs.react-app-mmi-environment }} REACT_APP_WALLETCONNECT_PROJECT_ID: ${{ inputs.react-app-walletconnect-project-id }} - REACT_APP_RAMP_APIKEY: ${{ secrets.REACT_APP_RAMP_APIKEY }} + REACT_APP_RAMP_APIKEY: ${{ inputs.react-app-ramp-api }} - name: Push changes uses: ad-m/github-push-action@8407731efefc0d8f72af254c74276b7a90be36e1 diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 349fe1d2..96f3c663 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -96,6 +96,7 @@ jobs: REACT_APP_MMI_BACKEND_BASE_URL: ${{ secrets.MMI_BACKEND_BASE_URL }} REACT_APP_MMI_ENVIRONMENT: ${{ secrets.MMI_ENVIRONMENT }} REACT_APP_WALLETCONNECT_PROJECT_ID: ${{ secrets.REACT_APP_WALLETCONNECT_PROJECT_ID_DEVSTAGING }} + REACT_APP_RAMP_APIKEY: ${{ secrets.REACT_APP_RAMP_APIKEY }} # Script to deploy to the dev environment - name: 'Deploy to S3: Develop' @@ -141,3 +142,4 @@ jobs: react-app-mmi-backend-base-url: ${{ secrets.MMI_BACKEND_BASE_URL }} react-app-mmi-environment: ${{ secrets.MMI_ENVIRONMENT }} react-app-walletconnect-project-id: ${{ secrets.REACT_APP_WALLETCONNECT_PROJECT_ID }} + react-app-ramp-api: ${{ secrets.REACT_APP_RAMP_APIKEY }}