Skip to content

Update .dockerignore and .gitignore #79

Update .dockerignore and .gitignore

Update .dockerignore and .gitignore #79

name: Build and Push Docker Image
on:
push:
branches:
- master
tags:
- '*'
jobs:
build-and-push:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: "ghcr.io/bigboot/autokuma"
dockerfile: Dockerfile
- name: "ghcr.io/bigboot/kuma"
dockerfile: Dockerfile.cli
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ matrix.name }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- 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
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: ${{ matrix.dockerfile }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}