Skip to content

Commit

Permalink
Merge pull request #10 from koenmtb1/main
Browse files Browse the repository at this point in the history
👷 Add CI for Docker build
  • Loading branch information
tinydjp authored Sep 22, 2024
2 parents 29dc38f + bc2632d commit e839aa7
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Build and push Docker image

on:
workflow_dispatch:
push:
branches:
- main
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

permissions:
id-token: write
contents: write
packages: write

jobs:
docker:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/doravota
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Login to GHCR
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@v3
with:
context: .
file: Dockerfile
push: true
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit e839aa7

Please sign in to comment.