Skip to content

build(deps): bump Autofac.Extensions.DependencyInjection from 9.0.0 t… #149

build(deps): bump Autofac.Extensions.DependencyInjection from 9.0.0 t…

build(deps): bump Autofac.Extensions.DependencyInjection from 9.0.0 t… #149

Workflow file for this run

name: Create and publish container image
on:
push:
branches:
- 'main'
tags:
- 'v[0-9]+.[0-9]+.[0-9]'
- 'v[0-9]+.[0-9]+.[0-9]-**'
jobs:
call_build-and-push-image_nightly:
if: startsWith(github.ref, 'refs/heads/')
permissions:
contents: read
packages: write
uses: ./.github/workflows/docker-build-push-matrix.yml
with:
image-tags: nightly
secrets:
registry-pass: ${{ secrets.GITHUB_TOKEN }}
call_build-and-push-image_prerelease:
if: ${{ startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-') }}
permissions:
contents: read
packages: write
uses: ./.github/workflows/docker-build-push-matrix.yml
with:
image-tags: ${{ github.ref_name }}
secrets:
registry-pass: ${{ secrets.GITHUB_TOKEN }}
call_build-and-push-image_release:
if: ${{ startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-') }}
permissions:
contents: read
packages: write
uses: ./.github/workflows/docker-build-push-matrix.yml
with:
image-tags: ${{ github.ref_name }} latest
secrets:
registry-pass: ${{ secrets.GITHUB_TOKEN }}