Skip to content

Commit

Permalink
Add Docker image CI workflow
Browse files Browse the repository at this point in the history
This commit adds a CI workflow that builds and publishes the
rawfile-localpv Docker image to the GitHub Container Registry.

Signed-off-by: Stephanos Ioannidis <[email protected]>
  • Loading branch information
stephanosio committed Feb 28, 2024
1 parent 4e0a4fe commit f101f56
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Docker Image

on:
push:
branches: [ '**' ]
tags: [ '*' ]
pull_request:
branches: [ '**' ]

permissions:
packages: write

concurrency:
group: docker-image-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive

- name: Generate metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/centrinix/rawfile-localpv
flavor: |
latest=false
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

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

- name: Login to GitHub Container Registry
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
IMAGE_REPOSITORY=${{ github.server_url }}/${{ github.repository }}
IMAGE_TAG=${{ github.ref }}

0 comments on commit f101f56

Please sign in to comment.