🔨 Add develop build

This commit is contained in:
2025-08-07 20:33:37 +08:00
parent ee8e9df12e
commit 554f73b550

View File

@@ -1,12 +1,12 @@
name: Build and Push Microservices
name: Build and Push Microservices
on:
on:
push:
branches:
- master
workflow_dispatch:
jobs:
jobs:
build-sphere:
runs-on: ubuntu-latest
permissions:
@@ -156,3 +156,34 @@ jobs:
push: true
tags: ghcr.io/${{ vars.PACKAGE_OWNER }}/dyson-gateway:latest
platforms: linux/amd64
build-develop:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup NBGV
uses: dotnet/nbgv@master
id: nbgv
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push DysonNetwork.Develop Docker image
uses: docker/build-push-action@v6
with:
file: DysonNetwork.Develop/Dockerfile
context: .
push: true
tags: ghcr.io/${{ vars.PACKAGE_OWNER }}/dyson-develop:latest
platforms: linux/amd64