Skip to content

Commit

Permalink
Add built CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobMiksch committed Jul 6, 2024
1 parent f50c570 commit 0d7002f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Docker Images only

on:
push:
branches: [ main ]
pull_request:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

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

- name: Install Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker Image only
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: false

0 comments on commit 0d7002f

Please sign in to comment.