mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
b826cd839e
* expose version * add release description * Add release from tag functionality * Testing version->release tagging * build on tag, release a2 * Stick to manual relase to simplify things * Tag from release * bump version just to be sure.. * releases uses tags... * Make this version 0.1.0
73 lines
2.1 KiB
YAML
73 lines
2.1 KiB
YAML
name: Docker Build and Push
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
BASE_IMAGE_NAME: ${{ github.repository }}/buttercup
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- component: orchestrator
|
|
dockerfile: ./orchestrator/Dockerfile
|
|
- component: fuzzer
|
|
dockerfile: ./fuzzer/dockerfiles/runner_image.Dockerfile
|
|
- component: patcher
|
|
dockerfile: ./patcher/Dockerfile
|
|
- component: seed-gen
|
|
dockerfile: ./seed-gen/Dockerfile
|
|
- component: program-model
|
|
dockerfile: ./program-model/Dockerfile
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.BASE_IMAGE_NAME }}-${{ matrix.component }}
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=ref,event=pr
|
|
type=ref,event=tag
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ${{ matrix.dockerfile }}
|
|
push: ${{ github.event_name != 'pull_request' || startsWith(github.head_ref, 'ci/') }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
env:
|
|
DOCKER_BUILD_RECORD_RETENTION_DAYS: ${{ github.ref_type == 'tag' || github.event_name == 'release' && '0' || '7' }}
|