Skip to content

Commit

Permalink
ci: build container
Browse files Browse the repository at this point in the history
Build and push the container to the registry.

Signed-off-by: Simon de Vlieger <[email protected]>
  • Loading branch information
supakeen committed May 28, 2024
1 parent 738bc2b commit e3c83ba
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build & Deploy

on:
release:
push:

jobs:
build-base:
name: Build & push image
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Github Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Generate docker image metadata
uses: docker/metadata-action@v4
id: meta
with:
images: ghcr.io/osbuild/otk
tags: |
type=ref,event=tag,enable=${{ startsWith(github.ref, 'refs/tags/') }}
type=raw,value=latest
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
file: ./Containerfile
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
cache-from: type=registry,ref=ghcr.io/osbuild/otk:latest
cache-to: type=inline
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit e3c83ba

Please sign in to comment.