mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-22 00:59:11 +01:00
Add a new GitHub Actions workflow for building Docker images with the "compat" tag on the compat branch. Also update the existing nightly workflow to only run on the compat branch instead of all branches.
21 lines
443 B
YAML
21 lines
443 B
YAML
name: Docker Image CI (compat)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "compat" # compat branch
|
|
|
|
jobs:
|
|
build-compat:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy
|
|
tag: compat
|
|
target: main
|
|
build-compat-agent:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy-agent
|
|
tag: compat
|
|
target: agent
|