summaryrefslogtreecommitdiff
path: root/.github/workflows/daemon-image.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/daemon-image.yml')
-rw-r--r--.github/workflows/daemon-image.yml62
1 files changed, 62 insertions, 0 deletions
diff --git a/.github/workflows/daemon-image.yml b/.github/workflows/daemon-image.yml
new file mode 100644
index 0000000..2501dab
--- /dev/null
+++ b/.github/workflows/daemon-image.yml
@@ -0,0 +1,62 @@
+name: Daemon Image
+
+on:
+ push:
+ tags:
+ - 'v*'
+ branches:
+ - main
+ paths:
+ - 'makima/**'
+ - 'vendor/**'
+ - 'k8s/daemon/Dockerfile'
+ - 'Cargo.*'
+ workflow_dispatch:
+
+env:
+ REGISTRY: ghcr.io
+ IMAGE_NAME: soryu-co/makima-daemon
+
+jobs:
+ build-and-push:
+ name: Build and Push Daemon Image
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ packages: write
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+
+ - name: Log in to GHCR
+ uses: docker/login-action@v3
+ with:
+ registry: ${{ env.REGISTRY }}
+ username: ${{ github.actor }}
+ password: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Extract metadata
+ id: meta
+ uses: docker/metadata-action@v5
+ with:
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+ tags: |
+ type=semver,pattern={{version}}
+ type=semver,pattern={{major}}.{{minor}}
+ type=sha,prefix=
+ type=raw,value=latest,enable={{is_default_branch}}
+
+ - name: Build and push
+ uses: docker/build-push-action@v6
+ with:
+ context: .
+ file: k8s/daemon/Dockerfile
+ push: true
+ tags: ${{ steps.meta.outputs.tags }}
+ labels: ${{ steps.meta.outputs.labels }}
+ cache-from: type=gha
+ cache-to: type=gha,mode=max