Create docker-image.yml #2
This file contains hidden or 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
| 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: '25.2.1' | ||
| ELIXIR_VERSION: '1.14.5' | ||
| RELEASE_VERSION: 5.4.0 | ||
| jobs: | ||
| push_to_registry: | ||
| name: Push Docker image to Docker Hub | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| release-version: ${{ steps.output-step.outputs.release-version }} | ||
| short-sha: ${{ steps.output-step.outputs.short-sha }} | ||
| 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: Add outputs | ||
| run: | | ||
| echo "::set-output name=release-version::${{ env.NEXT_RELEASE_VERSION }}" | ||
| echo "::set-output name=short-sha::${{ env.SHORT_SHA }}" | ||
| id: output-step | ||
| - name: Build and push Docker image | ||
| 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:master, blockscout/blockscout:${{ env.RELEASE_VERSION }}.commit.${{ env.SHORT_SHA }} | ||
| 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 | ||
| DECODE_NOT_A_CONTRACT_CALLS=false | ||
| MIXPANEL_URL= | ||
| MIXPANEL_TOKEN= | ||
| AMPLITUDE_URL= | ||
| AMPLITUDE_API_KEY= | ||
| CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL= | ||
| BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+commit.${{ env.SHORT_SHA }} | ||
| RELEASE_VERSION=${{ env.RELEASE_VERSION }} | ||
| - name: Build and push Docker image for frontend | ||
| uses: docker/build-push-action@v5 | ||
| with: | ||
| context: . | ||
| file: ./docker/Dockerfile | ||
| push: true | ||
| cache-from: type=registry,ref=blockscout/blockscout:buildcache | ||
| tags: blockscout/blockscout:frontend-main | ||
| 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= | ||
| SESSION_COOKIE_DOMAIN=k8s-dev.blockscout.com | ||
| BLOCKSCOUT_VERSION=v${{ env.RELEASE_VERSION }}-beta.+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/[email protected] | ||
| 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/[email protected] | ||
| 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"}' | ||
| test: | ||
| needs: deploy_e2e | ||
| uses: blockscout/blockscout-ci-cd/.github/workflows/e2e_new.yaml@master | ||
|
Check failure on line 124 in .github/workflows/publish-docker-image-every-push.yml
|
||
| secrets: inherit | ||