mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
22 lines
585 B
YAML
22 lines
585 B
YAML
name: Docker Image CI (nightly)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "*" # matches every branch that doesn't contain a '/'
|
|
- "*/*" # matches every branch containing a single '/'
|
|
- "**" # matches every branch
|
|
- "!main" # excludes main
|
|
|
|
jobs:
|
|
build-nightly:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy
|
|
tag: nightly
|
|
build-nightly-agent:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy-agent
|
|
tag: nightly
|
|
agent: true
|