Skip to content

I forgot this was a thing #51

I forgot this was a thing

I forgot this was a thing #51

Workflow file for this run

name: Build and push Docker images
on:
schedule:
- cron: "15 14 * * *"
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
jobs:
build-base:
strategy:
fail-fast: false
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
uses: ./.github/workflows/docker-build.yml

Check failure on line 29 in .github/workflows/docker.yaml

View workflow run for this annotation

GitHub Actions / Build and push Docker images

Invalid workflow file

The workflow is not valid. .github/workflows/docker.yaml (Line: 29, Col: 5): Unexpected value 'uses' .github/workflows/docker.yaml (Line: 30, Col: 5): Unexpected value 'with'
with:
variant: base
build-all:
needs: build-base
strategy:
fail-fast: false
matrix:
variant:
- gnome
- flagship
- xfce
- kde
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
uses: ./.github/workflows/docker-build.yml
with:
variant: ${{ matrix.variant }}