mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-15 08:03:37 +01:00
21 lines
404 B
YAML
21 lines
404 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build-prod:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy
|
|
tag: latest
|
|
target: main
|
|
build-prod-agent:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy-agent
|
|
tag: latest
|
|
target: agent
|