27 lines
519 B
YAML
27 lines
519 B
YAML
name: Dev images
|
|
|
|
# On every push to the dev branch, build all three images and push them to
|
|
# GHCR tagged `dev`. Docker Hub dev images are published by GitLab CI.
|
|
|
|
on:
|
|
push:
|
|
branches: [dev]
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: docker-dev-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
build-push:
|
|
uses: ./.github/workflows/_docker-build-push.yml
|
|
with:
|
|
push: true
|
|
tag_mode: dev
|
|
publish_dockerhub: false
|
|
secrets: inherit
|