fix: Add rescue on tx revert reason fetching (#10366)
* fix: Add rescue on tx revert reason fetching * Build image for HF * Fix workflowpull/10369/head
parent
f67801e9e8
commit
c20ce8dd11
@ -0,0 +1,105 @@ |
|||||||
|
name: Publish regular Docker image on demand |
||||||
|
|
||||||
|
on: |
||||||
|
workflow_dispatch: |
||||||
|
env: |
||||||
|
OTP_VERSION: ${{ vars.OTP_VERSION }} |
||||||
|
ELIXIR_VERSION: ${{ vars.ELIXIR_VERSION }} |
||||||
|
RELEASE_VERSION: ${{ vars.RELEASE_VERSION }} |
||||||
|
|
||||||
|
jobs: |
||||||
|
push_to_registry: |
||||||
|
name: Push Docker image to Docker Hub |
||||||
|
runs-on: ubuntu-latest |
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v4 |
||||||
|
- name: Setup repo |
||||||
|
uses: ./.github/actions/setup-repo |
||||||
|
id: setup |
||||||
|
with: |
||||||
|
docker-username: ${{ secrets.DOCKER_USERNAME }} |
||||||
|
docker-password: ${{ secrets.DOCKER_PASSWORD }} |
||||||
|
docker-remote-multi-platform: true |
||||||
|
docker-arm-host: ${{ secrets.ARM_RUNNER_HOSTNAME }} |
||||||
|
docker-arm-host-key: ${{ secrets.ARM_RUNNER_KEY }} |
||||||
|
|
||||||
|
- name: Build and push Docker image (indexer + API) |
||||||
|
uses: docker/build-push-action@v5 |
||||||
|
with: |
||||||
|
context: . |
||||||
|
file: ./docker/Dockerfile |
||||||
|
push: true |
||||||
|
cache-from: type=registry,ref=blockscout/blockscout:buildcache |
||||||
|
cache-to: type=registry,ref=blockscout/blockscout:buildcache,mode=max |
||||||
|
tags: blockscout/blockscout:${{ env.RELEASE_VERSION }}.commit.${{ env.SHORT_SHA }} |
||||||
|
labels: ${{ steps.setup.outputs.docker-labels }} |
||||||
|
platforms: | |
||||||
|
linux/amd64 |
||||||
|
linux/arm64/v8 |
||||||
|
build-args: | |
||||||
|
DISABLE_WEBAPP=false |
||||||
|
API_V1_READ_METHODS_DISABLED=false |
||||||
|
API_V1_WRITE_METHODS_DISABLED=false |
||||||
|
CACHE_EXCHANGE_RATES_PERIOD= |
||||||
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED= |
||||||
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= |
||||||
|
ADMIN_PANEL_ENABLED=false |
||||||
|
DECODE_NOT_A_CONTRACT_CALLS=false |
||||||
|
MIXPANEL_URL= |
||||||
|
MIXPANEL_TOKEN= |
||||||
|
AMPLITUDE_URL= |
||||||
|
AMPLITUDE_API_KEY= |
||||||
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }} |
||||||
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }} |
||||||
|
|
||||||
|
- name: Build and push Docker image (indexer) |
||||||
|
uses: docker/build-push-action@v5 |
||||||
|
with: |
||||||
|
context: . |
||||||
|
file: ./docker/Dockerfile |
||||||
|
push: true |
||||||
|
tags: blockscout/blockscout:${{ env.RELEASE_VERSION }}.commit.${{ env.SHORT_SHA }}-indexer |
||||||
|
labels: ${{ steps.setup.outputs.docker-labels }} |
||||||
|
platforms: | |
||||||
|
linux/amd64 |
||||||
|
linux/arm64/v8 |
||||||
|
build-args: | |
||||||
|
DISABLE_API=true |
||||||
|
DISABLE_WEBAPP=true |
||||||
|
CACHE_EXCHANGE_RATES_PERIOD= |
||||||
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED= |
||||||
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= |
||||||
|
ADMIN_PANEL_ENABLED=false |
||||||
|
DECODE_NOT_A_CONTRACT_CALLS=false |
||||||
|
MIXPANEL_URL= |
||||||
|
MIXPANEL_TOKEN= |
||||||
|
AMPLITUDE_URL= |
||||||
|
AMPLITUDE_API_KEY= |
||||||
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }} |
||||||
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }} |
||||||
|
|
||||||
|
- name: Build and push Docker image (API) |
||||||
|
uses: docker/build-push-action@v5 |
||||||
|
with: |
||||||
|
context: . |
||||||
|
file: ./docker/Dockerfile |
||||||
|
push: true |
||||||
|
tags: blockscout/blockscout:${{ env.RELEASE_VERSION }}.commit.${{ env.SHORT_SHA }}-api |
||||||
|
labels: ${{ steps.setup.outputs.docker-labels }} |
||||||
|
platforms: | |
||||||
|
linux/amd64 |
||||||
|
linux/arm64/v8 |
||||||
|
build-args: | |
||||||
|
DISABLE_INDEXER=true |
||||||
|
DISABLE_WEBAPP=true |
||||||
|
CACHE_EXCHANGE_RATES_PERIOD= |
||||||
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED= |
||||||
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= |
||||||
|
ADMIN_PANEL_ENABLED=false |
||||||
|
DECODE_NOT_A_CONTRACT_CALLS=false |
||||||
|
MIXPANEL_URL= |
||||||
|
MIXPANEL_TOKEN= |
||||||
|
AMPLITUDE_URL= |
||||||
|
AMPLITUDE_API_KEY= |
||||||
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }} |
||||||
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }} |
Loading…
Reference in new issue