Skip to content
This repository was archived by the owner on Jun 7, 2026. It is now read-only.

Let's test something #15

Let's test something

Let's test something #15

Workflow file for this run

name: Docker Build
on:
workflow_dispatch:
push:
branches-ignore: [ "master", "deploy/staging" ]
pull_request:
env:
REGISTRY: ghcr.io
IMAGE_NAME: sinytra/mm_wiki
jobs:
build:
name: Build Docker
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max