Files
docker-static/.github/workflows/cron.yml
T

21 lines
396 B
YAML

name: Matrix Cron Build
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 1'
jobs:
tags:
uses: ./.github/workflows/tags.yml
build:
needs: tags
strategy:
matrix: ${{fromJson(needs.tags.outputs.matrix)}}
uses: ./.github/workflows/build.yml
with:
push: true
nginx_version: ${{ matrix.version }}
tags: ${{ matrix.tags }}
secrets: inherit