Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
RanGojo committed Oct 2, 2024
1 parent 9d2fd12 commit 853bb6b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-bw3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
deploy:
uses: ./.github/workflows/production-dapp-deployment.yml
with:
vercel_project_id: ${{ secrets.VERCEL_DAPP_BW3_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ secrets.NEXT_DAPP_BW3_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ secrets.NEXT_DAPP_BW3_EXPLORER_PUBLIC_SECRET_KEY }}
vercel_project_id: ${{ inputs.VERCEL_DAPP_BW3_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ inputs.NEXT_DAPP_BW3_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ inputs.NEXT_DAPP_BW3_EXPLORER_PUBLIC_SECRET_KEY }}
secrets:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-dexi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
deploy:
uses: ./.github/workflows/production-dapp-deployment.yml
with:
vercel_project_id: ${{ secrets.VERCEL_DAPP_DEXI_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ secrets.NEXT_DAPP_DEXI_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ secrets.NEXT_DAPP_DEXI_EXPLORER_PUBLIC_SECRET_KEY }}
vercel_project_id: ${{ inputs.VERCEL_DAPP_DEXI_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ inputs.NEXT_DAPP_DEXI_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ inputs.NEXT_DAPP_DEXI_EXPLORER_PUBLIC_SECRET_KEY }}
secrets:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-eld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
deploy:
uses: ./.github/workflows/production-dapp-deployment.yml
with:
vercel_project_id: ${{ secrets.VERCEL_DAPP_ELD_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ secrets.NEXT_DAPP_ELD_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ secrets.NEXT_DAPP_ELD_EXPLORER_PUBLIC_SECRET_KEY }}
vercel_project_id: ${{ inputs.VERCEL_DAPP_ELD_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ inputs.NEXT_DAPP_ELD_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ inputs.NEXT_DAPP_ELD_EXPLORER_PUBLIC_SECRET_KEY }}
secrets:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-tw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
deploy:
uses: ./.github/workflows/production-dapp-deployment.yml
with:
vercel_project_id: ${{ secrets.VERCEL_DAPP_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ secrets.NEXT_DAPP_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ secrets.NEXT_DAPP_EXPLORER_PUBLIC_SECRET_KEY }}
vercel_project_id: ${{ inputs.VERCEL_DAPP_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ inputs.NEXT_DAPP_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ inputs.NEXT_DAPP_EXPLORER_PUBLIC_SECRET_KEY }}
secrets:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-tw2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
deploy:
uses: ./.github/workflows/production-dapp-deployment.yml
with:
vercel_project_id: ${{ secrets.VERCEL_DAPP_TW2_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ secrets.NEXT_DAPP_TW2_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ secrets.NEXT_DAPP_TW2_EXPLORER_PUBLIC_SECRET_KEY }}
vercel_project_id: ${{ inputs.VERCEL_DAPP_TW2_EXPLORER_PROJECT_ID }}
next_public_api_key: ${{ inputs.NEXT_DAPP_TW2_EXPLORER_PUBLIC_API_KEY }}
next_public_secret_key: ${{ inputs.NEXT_DAPP_TW2_EXPLORER_PUBLIC_SECRET_KEY }}
secrets:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/production-dapp-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ on:
secrets:
VERCEL_ORG_ID:
required: true
type: string
VERCEL_TOKEN:
required: true
type: string
NEXT_PUBLIC_BASE_URL:
required: true
type: string

jobs:
deploy:
Expand Down

0 comments on commit 853bb6b

Please sign in to comment.