test pr #1
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
# Build containers on every PR | ||
# See also container-release.yml | ||
name: Container Build | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
workflow_dispatch: | ||
jobs: | ||
build-container: | ||
runs-on: ubuntu-24.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- dockerfile: test/ct-test-srv/Dockerfile | ||
image: ghcr.io/mcpherrinm/ct-test-srv | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Build | ||
run: docker buildx . -f "${{ matrix.image }}" -t "${{ image }}" | ||
Check failure on line 31 in .github/workflows/container-build.yml GitHub Actions / Container BuildInvalid workflow file
|