mirror of
https://github.com/cupcakearmy/docker-static.git
synced 2026-07-04 22:45:35 +00:00
21 lines
396 B
YAML
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 |