Skip to content

Production/Development Images #1

Production/Development Images

Production/Development Images #1

Workflow file for this run

name: "Production/Development Images"
on:
push:
tags:
- "v*"
schedule:
# Build base and development images on 1 and 15 day every month
- cron: '0 0 1,15 * *'
workflow_dispatch:
jobs:
base:
uses: "./.github/workflows/docker.yml"

Check failure on line 14 in .github/workflows/images.yml

View workflow run for this annotation

GitHub Actions / Production/Development Images

Invalid workflow file

The workflow is not valid. .github/workflows/images.yml (Line: 14, Col: 11): Secret REGISTRY is required, but not provided while calling. .github/workflows/images.yml (Line: 14, Col: 11): Secret REGISTRY_USERNAME is required, but not provided while calling.
with:
docker_target: base
platforms: linux/amd64,linux/arm64
version: base
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
dev:
needs: ["base"]
uses: "./.github/workflows/docker.yml"
with:
docker_target: development
platforms: linux/amd64
version: dev
secrets:
CR_PAT: ${{ secrets.CR_PAT }}