Skip to content

Commit

Permalink
Add step to build docker container during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rnestler committed Jan 6, 2025
1 parent 6b41c37 commit 0b30728
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Docker build

on: [push]

jobs:
docker-build:
runs-on: ubuntu-24.04
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t "${REGISTRY}/${IMAGE_NAME}"

0 comments on commit 0b30728

Please sign in to comment.