Skip to content

Docker

Docker #72

Workflow file for this run

name: Docker
on:
workflow_run:
workflows: ["CI"]
types: [completed]
branches: [main]
workflow_dispatch:
inputs:
tag:
description: "Image tag (e.g. 0.2.0 or nightly)"
required: true
default: "nightly"
jobs:
docker:
if: >
github.event_name != 'workflow_run' || (
github.event.workflow_run.conclusion == 'success' &&
!contains(github.event.workflow_run.head_commit.message, 'chore: release') &&
!contains(github.event.workflow_run.head_commit.message, 'chore(release)')
)
uses: oxidized-mc/ci/.github/workflows/docker.yml@main
permissions:
contents: read
packages: write