forked from blockscout/blockscout
-
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.
Merge pull request #37 from aurora-is-near/sync-25-10
Sync with origin
- Loading branch information
Showing
70 changed files
with
3,089 additions
and
277 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
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
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Publish Docker image for specific chain branches | ||
|
||
on: | ||
push: | ||
branches: | ||
- production-suave-stg | ||
env: | ||
OTP_VERSION: '25.2.1' | ||
ELIXIR_VERSION: '1.14.5' | ||
jobs: | ||
push_to_registry: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
env: | ||
RELEASE_VERSION: 5.3.0 | ||
DOCKER_CHAIN_NAME: suave | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: blockscout/blockscout | ||
|
||
- name: Add SHORT_SHA env property with commit short sha | ||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:latest, blockscout/blockscout-${{ env.DOCKER_CHAIN_NAME }}:${{ env.RELEASE_VERSION }}-postrelease-${{ env.SHORT_SHA }} | ||
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=suave |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,94 @@ jobs: | |
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
- name: Build and push Docker image for zkEVM | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-zkevm:latest, blockscout/blockscout-zkevm:${{ env.RELEASE_VERSION }} | ||
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 | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=polygon_zkevm | ||
- name: Build and push Docker image for SUAVE | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-suave:latest, blockscout/blockscout-suave:${{ env.RELEASE_VERSION }} | ||
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 | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=suave | ||
- name: Build and push Docker image for Rootstock | ||
uses: docker/build-push-action@5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-rsk:latest, blockscout/blockscout-rsk:${{ env.RELEASE_VERSION }} | ||
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 | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=rsk | ||
- name: Build and push Docker image for Polygon Edge | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: blockscout/blockscout-polygon-edge:latest, blockscout/blockscout-polygon-edge:${{ env.RELEASE_VERSION }} | ||
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 | ||
RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
CHAIN_TYPE=polygon_edge | ||
- name: Send release announcement to Slack workflow | ||
id: slack | ||
uses: slackapi/[email protected] | ||
|
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
Oops, something went wrong.