Create a cleanup handler for the varnish cache to provide 'ban' functionality #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Build and push dlcs-varnish docker imageInvalid workflow file
|
||
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 }} |