feat: CI Proxy upgrade verification flow #585
Workflow file for this run
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
name: Build ad publish Docker image | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize] | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-publish-image: | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
if: | | |
(github.event_name == 'release' && github.event.action == 'published') || | |
github.ref == 'refs/heads/main' || github.event_name == 'pull_request' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and push a test image containing only the ETH node and contracts | |
uses: ./.github/actions/docker-publish | |
id: publish | |
with: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
image: ghcr.io/fuellabs/fuel-bridge | |
dockerfile: docker/l1-chain/Dockerfile | |
- name: Build and push a test image containing all components for e2e tests | |
uses: ./.github/actions/docker-publish | |
id: publish-full | |
with: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
image: ghcr.io/fuellabs/fuel-bridge-full | |
dockerfile: docker/full-env/Dockerfile |