Skip to content

Merge branch 'headless' into develop #14

Merge branch 'headless' into develop

Merge branch 'headless' into develop #14

Workflow file for this run

name: NuGet Preview (develop)
on:
push:
branches: [ develop ]
concurrency:
group: nuget-preview-${{ github.ref }}
cancel-in-progress: true
jobs:
pack-and-push:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Pack all packages
shell: pwsh
run: ./build/nuget-pack.ps1 -VersionSuffix "alpha.${{ github.run_number }}"
env:
DOTNET_NOLOGO: true
- name: NuGet login (OIDC → temp API key)
uses: NuGet/login@v1
id: login
with:
user: ${{ vars.NUGET_USER }}
- name: Push to NuGet.org
shell: pwsh
run: ./build/nuget-publish.ps1
env:
NUGET_API_KEY: ${{ steps.login.outputs.NUGET_API_KEY }}