Skip to content

Enhance README.md with detailed architecture diagram and update AI pr… #61

Enhance README.md with detailed architecture diagram and update AI pr…

Enhance README.md with detailed architecture diagram and update AI pr… #61

name: Aspire Publish Pipeline
on:
push:
branches: ['*'] # Trigger on any branch
pull_request:
branches: ['*'] # Trigger on any branch
permissions:
contents: read
packages: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.x'
- name: Install Aspire CLI
run: dotnet tool install --global aspire.cli
- name: Log in to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push to GitHub Container Registry
run: aspire do push-gh
env:
GHCR_REPO: ghcr.io/${{ github.repository_owner }}
BRANCH_NAME: ${{ github.ref_name }}
BUILD_NUMBER: ${{ github.run_number }}
GIT_SHA: ${{ github.sha }}