Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
RanGojo committed Oct 2, 2024
1 parent 3ea1719 commit 2cec18c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 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: ${{ 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 }}
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 }}
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: ${{ 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 }}
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 }}
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: ${{ 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 }}
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 }}
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: ${{ 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 }}
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 }}
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: ${{ 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 }}
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 }}
secrets:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production-dapp-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
run: |
echo "VERCEL_ORG_ID=${{ secrets.VERCEL_ORG_ID }}" >> $GITHUB_ENV
echo "VERCEL_TOKEN=${{ secrets.VERCEL_TOKEN }}" >> $GITHUB_ENV
echo "VERCEL_PROJECT_ID=${{ inputs.VERCEL_PROJECT_ID }}" >> $GITHUB_ENV
echo "NEXT_PUBLIC_BASE_URL=${{ secrets.NEXT_PUBLIC_BASE_URL }}" >> $GITHUB_ENV
echo "VERCEL_PROJECT_ID=${{ inputs.VERCEL_PROJECT_ID }}" >> $GITHUB_ENV
echo "NEXT_PUBLIC_API_KEY=${{ inputs.next_public_api_key }}" >> $GITHUB_ENV
echo "NEXT_PUBLIC_SECRET_KEY=${{ inputs.next_public_secret_key }}" >> $GITHUB_ENV
- name: Install Vercel CLI
Expand Down

0 comments on commit 2cec18c

Please sign in to comment.