-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: error parse number in token transfer. Int to Float value
- Loading branch information
Showing
3 changed files
with
29 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
name: CI explorer-fe | ||
|
||
on: | ||
push: | ||
branches: [ "dev" ] | ||
pull_request: | ||
branches: [ "dev" ] | ||
push: | ||
branches: ['dev'] | ||
pull_request: | ||
branches: ['dev'] | ||
|
||
env: | ||
BUILD_IMAGE: 'maven:3.6-jdk-11' | ||
NEXT_PUBLIC_COSMOS_API: https://chainindexing.astranaut.dev | ||
NEXT_PUBLIC_EVM_API: https://blockscout.astranaut.dev | ||
NEXT_PUBLIC_URL: https://explorer.astranaut.dev | ||
NEXT_PUBLIC_CHAIN_ID: 11115 | ||
NEXT_PUBLIC_TITLE: Astra Explorer Testnet | ||
NEXT_PUBLIC_GA_MEASUREMENT_ID: G-XNDN41NMWF | ||
NEXT_PUBLIC_SENTRY_CLIENT_DSN: "https://0df08007fb014e5fa05ce2a4fb3fccea@sentry.tiki.com.vn/473" | ||
NEXT_PUBLIC_SENTRY_SSR_DSN: "https://b3b5ac84a31d407aa23b14b84af7f10d@sentry.tiki.com.vn/475" | ||
NEXT_PUBLIC_ENV: "testnet" | ||
BUILD_IMAGE: 'maven:3.6-jdk-11' | ||
NEXT_PUBLIC_COSMOS_API: https://chainindexing.astranaut.dev | ||
NEXT_PUBLIC_EVM_API: https://blockscout.astranaut.dev | ||
NEXT_PUBLIC_URL: https://explorer.astranaut.dev | ||
NEXT_PUBLIC_CHAIN_ID: 11115 | ||
NEXT_PUBLIC_TITLE: Astra Explorer Testnet | ||
NEXT_PUBLIC_GA_MEASUREMENT_ID: G-XNDN41NMWF | ||
NEXT_PUBLIC_SENTRY_CLIENT_DSN: 'https://0df08007fb014e5fa05ce2a4fb3fccea@sentry.tiki.com.vn/473' | ||
NEXT_PUBLIC_SENTRY_SSR_DSN: 'https://b3b5ac84a31d407aa23b14b84af7f10d@sentry.tiki.com.vn/475' | ||
NEXT_PUBLIC_ENV: 'testnet' | ||
|
||
jobs: | ||
build: | ||
runs-on: [ self-hosted, linux ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag explorer-fe:$GITHUB_RUN_NUMBER --build-arg SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN --build-arg NEXT_PUBLIC_COSMOS_API=$NEXT_PUBLIC_COSMOS_API --build-arg NEXT_PUBLIC_EVM_API=$NEXT_PUBLIC_EVM_API --build-arg NEXT_PUBLIC_URL=$NEXT_PUBLIC_URL --build-arg NEXT_PUBLIC_CHAIN_ID=$NEXT_PUBLIC_CHAIN_ID --build-arg NEXT_PUBLIC_TITLE=$NEXT_PUBLIC_TITLE --build-arg NEXT_PUBLIC_GA_MEASUREMENT_ID=$NEXT_PUBLIC_GA_MEASUREMENT_ID --build-arg NEXT_PUBLIC_SENTRY_CLIENT_DSN=$NEXT_PUBLIC_SENTRY_CLIENT_DSN --build-arg NEXT_PUBLIC_SENTRY_SSR_DSN=$NEXT_PUBLIC_SENTRY_SSR_DSN --build-arg NEXT_PUBLIC_ENV=$NEXT_PUBLIC_ENV | ||
build: | ||
runs-on: [self-hosted, linux] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag explorer-fe:$GITHUB_RUN_NUMBER --build-arg SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN --build-arg NEXT_PUBLIC_COSMOS_API=$NEXT_PUBLIC_COSMOS_API --build-arg NEXT_PUBLIC_EVM_API=$NEXT_PUBLIC_EVM_API --build-arg NEXT_PUBLIC_URL=$NEXT_PUBLIC_URL --build-arg NEXT_PUBLIC_CHAIN_ID=$NEXT_PUBLIC_CHAIN_ID --build-arg NEXT_PUBLIC_TITLE=$NEXT_PUBLIC_TITLE --build-arg NEXT_PUBLIC_GA_MEASUREMENT_ID=$NEXT_PUBLIC_GA_MEASUREMENT_ID --build-arg NEXT_PUBLIC_SENTRY_CLIENT_DSN=$NEXT_PUBLIC_SENTRY_CLIENT_DSN --build-arg NEXT_PUBLIC_SENTRY_SSR_DSN=$NEXT_PUBLIC_SENTRY_SSR_DSN --build-arg NEXT_PUBLIC_ENV=$NEXT_PUBLIC_ENV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters