summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docker-image.yml51
1 files changed, 51 insertions, 0 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
new file mode 100644
index 00000000..10b1da4e
--- /dev/null
+++ b/.github/workflows/docker-image.yml
@@ -0,0 +1,51 @@
+name: Build and Publish Docker Image
+
+on:
+ release:
+ types: [created]
+ workflow_dispatch:
+
+env:
+ REGISTRY: ghcr.io
+ IMAGE_NAME: ${{ github.repository }}
+ PLATFORMS: linux/amd64,linux/arm64
+
+jobs:
+ build-and-publish:
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ packages: write
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Setup Docker buildx
+ uses: docker/setup-buildx-action@v2.5.0
+ with:
+ platforms: ${{ env.PLATFORMS }}
+
+ - name: Log into registry ${{ env.REGISTRY }}
+ uses: docker/login-action@v2.1.0
+ with:
+ registry: ${{ env.REGISTRY }}
+ username: ${{ github.actor }}
+ password: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Extract Docker metadata
+ id: meta
+ uses: docker/metadata-action@v4.3.0
+ with:
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+
+ - name: Build and push Docker image
+ id: build-and-push
+ uses: docker/build-push-action@v4.0.0
+ with:
+ push: true
+ tags: ${{ steps.meta.outputs.tags }}
+ labels: ${{ steps.meta.outputs.labels }}
+ platforms: ${{ env.PLATFORMS }}
+ cache-from: type=gha
+ cache-to: type=gha,mode=max