From 0a136eb1a91f251c88fb2dc8a8d8be0d06b18144 Mon Sep 17 00:00:00 2001 From: khanti42 Date: Fri, 6 Dec 2024 07:35:37 +0100 Subject: [PATCH] chore: replace secrets ` ALCHEMY_API_KEY` to `DIN_API_KEY` in CICD pipeline (#452) * chore: change secrets from VOYAGER to DIN for rpc calls * chore: old one step deploy workflow secret name update --- .github/workflows/deploy.yml | 2 +- .github/workflows/publish-npm.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1e1e5dc7..e45e3dc5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -116,7 +116,7 @@ jobs: SNAP_ENV: ${{ needs.prepare-deployment.outputs.ENV }} VERSION: ${{ needs.prepare-deployment.outputs.VERSION }} VOYAGER_API_KEY: ${{ secrets.VOYAGER_API_KEY }} - ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} + DIN_API_KEY: ${{ secrets.DIN_API_KEY }} GET_STARKNET_PUBLIC_PATH: ${{ needs.prepare-deployment.outputs.GET_STARKNET_PUBLIC_PATH }} LOG_LEVEL: ${{ needs.prepare-deployment.outputs.LOG_LEVEL }} - name: Cache Build diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index a0d80a05..a31231b0 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -73,7 +73,7 @@ jobs: VERSION: ${{ needs.prepare-deployment.outputs.VERSION }} LOG_LEVEL: ${{ needs.prepare-deployment.outputs.LOG_LEVEL }} VOYAGER_API_KEY: ${{ secrets.VOYAGER_API_KEY }} - ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }} + DIN_API_KEY: ${{ secrets.DIN_API_KEY }} - name: Cache Build uses: actions/cache@v3 id: cache