Skip to content

Hedin UI Nuget

Hedin UI Nuget #26

Workflow file for this run

name: Hedin UI Nuget
permissions:
contents: read
packages: write
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.x'
- name: Build
run: dotnet build --configuration Release src/Hedin.UI/
- name: Pack
run: dotnet pack --configuration Release --no-build src/Hedin.UI/
- name: Publish
run: dotnet nuget push src/Hedin.UI/bin/Release/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_AUTH_TOKEN}} --skip-duplicate --timeout 600