Skip to content

Use workflow from shared repo #1

Use workflow from shared repo

Use workflow from shared repo #1

Workflow file for this run

name: Docker
on:
workflow_call:
jobs:
docker:
strategy:
matrix:
include:
- version: trixie
latest: false
alt: testing
- version: bookworm
latest: true
alt: stable
- version: bullseye
latest: false
alt: oldstable
uses: "tweedegolf/actions-container-helpers/container-image.yml@main"

Check failure on line 20 in .github/workflows/docker.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
secrets: inherit
with:
push: ${{ github.ref == 'refs/heads/main' }}
build-args: |
DEBIAN_VERSION=${{matrix.version}}
tags: |
ghcr.io/tweedegolf/debian:${{matrix.version}}
ghcr.io/tweedegolf/debian:${{matrix.alt}}
${{ matrix.latest && 'ghcr.io/tweedegolf/debian:latest' || '' }}