# Configures this workflow to run every time a change is pushed to the branch called `release`.
on:
push:
branches:['master','main']
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
DISTRIBUTION:bookworm
COMPONENT:main
# USER: marco-private
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.