mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-24 22:22:35 +02:00
20 lines
445 B
YAML
20 lines
445 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
|
|
old_image_name: ${{ github.repository_owner }}/go-proxy
|
|
tag: latest
|
|
build-prod-agent:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy-agent
|
|
tag: latest
|
|
agent: true
|