Docker Build Push #1393
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: Docker Build Push | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build-scan-container-geth: | |
runs-on: ['self-hosted', 'org', 'ubuntu-22-04'] | |
permissions: | |
contents: read | |
security-events: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login at GCP Artifact Registry | |
uses: celo-org/reusable-workflows/.github/actions/[email protected] | |
with: | |
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-op-geth/providers/github-by-repos | |
service-account: [email protected] | |
docker-gcp-registries: us-west1-docker.pkg.dev | |
- name: Build and push container | |
uses: celo-org/reusable-workflows/.github/actions/[email protected] | |
with: | |
platforms: ${{ startsWith(github.ref, 'refs/heads/celo') && 'linux/amd64,linux/arm64' || 'linux/amd64' }} | |
registry: us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth | |
tags: ${{ github.sha }} | |
context: . | |
dockerfile: Dockerfile | |
push: true | |
trivy: ${{ startsWith(github.ref, 'refs/heads/celo') }} |