mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-04 06:03:08 +00:00
117 lines
4.0 KiB
YAML
117 lines
4.0 KiB
YAML
name: Publish Docker image on every push to master branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- 'CHANGELOG.md'
|
|
- '**/README.md'
|
|
- 'docker-compose/*'
|
|
env:
|
|
OTP_VERSION: ${{ vars.OTP_VERSION }}
|
|
ELIXIR_VERSION: ${{ vars.ELIXIR_VERSION }}
|
|
RELEASE_VERSION: 8.0.2
|
|
|
|
jobs:
|
|
push_to_registry:
|
|
name: Push Docker image to GitHub Container Registry
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup repo
|
|
uses: ./.github/actions/setup-repo
|
|
id: setup
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
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
|
|
cache-from: type=registry,ref=ghcr.io/blockscout/blockscout:buildcache
|
|
cache-to: type=registry,ref=ghcr.io/blockscout/blockscout:buildcache,mode=max
|
|
tags: ghcr.io/blockscout/blockscout:master, ghcr.io/blockscout/blockscout:${{ env.RELEASE_VERSION }}.commit.${{ env.SHORT_SHA }}
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
DECODE_NOT_A_CONTRACT_CALLS=false
|
|
MIXPANEL_URL=
|
|
MIXPANEL_TOKEN=
|
|
AMPLITUDE_URL=
|
|
AMPLITUDE_API_KEY=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
|
|
- name: Build and push Docker image (indexer)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: ghcr.io/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
|
|
DECODE_NOT_A_CONTRACT_CALLS=false
|
|
MIXPANEL_URL=
|
|
MIXPANEL_TOKEN=
|
|
AMPLITUDE_URL=
|
|
AMPLITUDE_API_KEY=
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
|
|
- name: Build and push Docker image for frontend
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
cache-from: type=registry,ref=ghcr.io/blockscout/blockscout:buildcache
|
|
tags: ghcr.io/blockscout/blockscout:frontend-main
|
|
labels: ${{ steps.setup.outputs.docker-labels }}
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
build-args: |
|
|
SESSION_COOKIE_DOMAIN=k8s-dev.blockscout.com
|
|
BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}.+commit.${{ env.SHORT_SHA }}
|
|
RELEASE_VERSION=${{ env.RELEASE_VERSION }}
|
|
deploy_e2e:
|
|
needs: push_to_registry
|
|
runs-on: ubuntu-latest
|
|
permissions: write-all
|
|
steps:
|
|
- name: Get Vault credentials
|
|
id: retrieve-vault-secrets
|
|
uses: hashicorp/vault-action@v2.4.1
|
|
with:
|
|
url: https://vault.k8s.blockscout.com
|
|
role: ci-dev
|
|
path: github-jwt
|
|
method: jwt
|
|
tlsSkipVerify: false
|
|
exportToken: true
|
|
secrets: |
|
|
ci/data/dev/github token | WORKFLOW_TRIGGER_TOKEN ;
|
|
- name: Trigger deploy
|
|
uses: convictional/trigger-workflow-and-wait@v1.6.1
|
|
with:
|
|
owner: blockscout
|
|
repo: deployment-values
|
|
github_token: ${{env.WORKFLOW_TRIGGER_TOKEN}}
|
|
workflow_file_name: deploy_blockscout.yaml
|
|
ref: main
|
|
wait_interval: 30
|
|
client_payload: '{ "instance": "dev", "globalEnv": "e2e"}'
|