mirror of
https://github.com/cupcakearmy/docker-static.git
synced 2026-07-04 22:45:35 +00:00
18 lines
326 B
YAML
18 lines
326 B
YAML
name: PR Build
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
tags:
|
|
uses: ./.github/workflows/tags.yml
|
|
|
|
build:
|
|
needs: tags
|
|
strategy:
|
|
matrix: ${{fromJson(needs.tags.outputs.matrix)}}
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
push: false
|
|
nginx_version: ${{ matrix.version }}
|
|
tags: ${{ matrix.tags }} |