Skip to content

build(deps): bump Microsoft.IdentityModel.Tokens from 8.0.2 to 8.2.1 … #186

build(deps): bump Microsoft.IdentityModel.Tokens from 8.0.2 to 8.2.1 …

build(deps): bump Microsoft.IdentityModel.Tokens from 8.0.2 to 8.2.1 … #186

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:4b86bf865bbb3d4e3f9836e435822456e786da10) --> "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 }}