22 lines
741 B
YAML
22 lines
741 B
YAML
name: On commits to dev
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
concurrency:
|
|
# Cancel any running workflow for the same branch when new commits are pushed.
|
|
# We group both by ref_name (available when CI is triggered by a push to a branch/tag)
|
|
# and head_ref (available when CI is triggered by a PR).
|
|
group: "${{ github.ref_name }}-${{ github.head_ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-engine-docker-image-and-publish-to-dockerhub:
|
|
name: Build engine Docker image and publish to Dockerhub
|
|
uses: ./.github/workflows/build-engine-docker-image-and-publish-to-dockerhub.yml
|
|
with:
|
|
# https://github.com/docker/metadata-action?tab=readme-ov-file#tags-input
|
|
docker_image_tags: |
|
|
type=raw,value=dev
|