Skip to content

build(deps): bump Swashbuckle.AspNetCore from 6.7.3 to 7.0.0 (#241) #183

build(deps): bump Swashbuckle.AspNetCore from 6.7.3 to 7.0.0 (#241)

build(deps): bump Swashbuckle.AspNetCore from 6.7.3 to 7.0.0 (#241) #183

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

Check failure on line 17 in .github/workflows/container.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/container.yml

Invalid workflow file

error parsing called workflow ".github/workflows/container.yml" -> "./.github/workflows/docker-build-push-matrix.yml" (source branch with sha:3df52cfc3085206d559bbdd18e373fd764e01e47) --> "eurofurence/reg-workflows/.github/workflows/docker-build-push.yml@feature/custom-dockerfile-context" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
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 }}