Skip to content

(wip)

(wip) #26

Workflow file for this run

name: Publish Docker image
on:
push:
jobs:
setup:
name: Setup Matrix Build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
outputs:
versions: ${{ steps.read.outputs.versions }}
steps:
- name: Check out the repo
uses: actions/checkout@v5
- name: read configs
id: read
run: |
echo "versions=$(cat config.json | jq . --compact-output)" >> "$GITHUB_OUTPUT"
docker_build_push:
needs:
- setup
strategy:
fail-fast: false
matrix:
config: ${{ fromJson(needs.setup.outputs.versions) }}
uses: ./.github/workflows/docker-build.yaml

Check failure on line 36 in .github/workflows/setup-build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/setup-build.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/setup-build.yaml" -> "./.github/workflows/docker-build.yaml" (source branch with sha:ab7087f0ad0c57c283cab5fa15c23309ef8e8bba) : (Line: 67, Col: 14): Unrecognized named-value: 'input'. Located at position 1 within expression: input.template
secrets: inherit
with:
name: ${{ matrix.config.name }}
base: ${{ matrix.config.base }}
template: ${{ matrix.config.template || 'Dockerfile.tmpl' }}
version: ${{ matrix.config.version }}
xdebug_version: ${{ matrix.config.xdebug_version }}
redis_version: ${{ matrix.config.redis_version }}
imap_version: ${{ matrix.config.imap_version }}
imap_type: ${{ matrix.config.imap_type }}
php_erros_enabled: ${{ matrix.config.php_erros_enabled }}
variations: ${{ toJson(matrix.config.variations) }}