mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00

- Updated Dockerfile and Makefile for socket-proxy build. - Modified go.mod to include necessary dependencies. - Updated CI workflows for socket-proxy integration. - Better module isolation - Code refactor
24 lines
630 B
YAML
24 lines
630 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
|
|
- "!dependabot/*"
|
|
- "!main" # excludes main
|
|
|
|
jobs:
|
|
build-nightly:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy
|
|
tag: nightly
|
|
target: main
|
|
build-nightly-agent:
|
|
uses: ./.github/workflows/docker-image.yml
|
|
with:
|
|
image_name: ${{ github.repository_owner }}/godoxy-agent
|
|
tag: nightly
|
|
target: agent
|