You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
6.2 KiB
158 lines
6.2 KiB
name: Zksync publish Docker image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- production-zksync
|
|
jobs:
|
|
push_to_registry:
|
|
name: Push Docker image to Docker Hub
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RELEASE_VERSION: 6.9.0
|
|
DOCKER_CHAIN_NAME: zksync
|
|
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@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }}
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
API_V1_READ_METHODS_DISABLED=false
|
|
DISABLE_WEBAPP=false
|
|
API_V1_WRITE_METHODS_DISABLED=false
|
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED=
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
CHAIN_TYPE=zksync
|
|
|
|
- name: Build and push Docker image (indexer)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }}-indexer
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
DISABLE_WEBAPP=true
|
|
DISABLE_API=true
|
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED=
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
CHAIN_TYPE=zksync
|
|
|
|
- name: Build and push Docker image (API)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }}-api
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
DISABLE_WEBAPP=true
|
|
DISABLE_INDEXER=true
|
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED=
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
CHAIN_TYPE=zksync
|
|
|
|
- name: Build and push Docker image (indexer + API + shrink internal transactions)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }}-shrink-internal-txs
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
API_V1_READ_METHODS_DISABLED=false
|
|
DISABLE_WEBAPP=false
|
|
API_V1_WRITE_METHODS_DISABLED=false
|
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED=
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
CHAIN_TYPE=zksync
|
|
|
|
- name: Build and push Docker image (indexer + shrink internal transactions)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }}-shrink-internal-txs-indexer
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
DISABLE_WEBAPP=true
|
|
DISABLE_API=true
|
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED=
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
CHAIN_TYPE=zksync
|
|
|
|
- name: Build and push Docker image (API + shrink internal transactions)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }}-shrink-internal-txs-api
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
DISABLE_WEBAPP=true
|
|
DISABLE_INDEXER=true
|
|
CACHE_TOTAL_GAS_USAGE_COUNTER_ENABLED=
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
CHAIN_TYPE=zksync |