Skip to content

Create a cleanup handler for the varnish cache to provide 'ban' functionality #9

Create a cleanup handler for the varnish cache to provide 'ban' functionality

Create a cleanup handler for the varnish cache to provide 'ban' functionality #9

Workflow file for this run

name: Build and push dlcs-varnish docker image
on:
push:
branches:
- master
tags:
- "*"
pull_request:
branches:
- master
jobs:
build-push-varnish:

Check failure on line 14 in .github/workflows/build-deploy.yml

View workflow run for this annotation

GitHub Actions / Build and push dlcs-varnish docker image

Invalid workflow file

The workflow is not valid. .github/workflows/build-deploy.yml (Line: 14, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: test-dotnet
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/docker-build-and-push
name: build and push
with:
image-name: "dlcs-varnish"
dockerfile: "Dockerfile"
context: "."
github-token: ${{ secrets.GITHUB_TOKEN }}
build-push-thumbs:
runs-on: ubuntu-latest
needs: test-dotnet
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/docker-build-and-push
with:
image-name: "dlcs-varnish-cleanup"
dockerfile: "Dockerfile"
context: "./varnish-cleanup"
github-token: ${{ secrets.GITHUB_TOKEN }}