Skip to content

Merge pull request #10 from mikeyoshino/2023-8-10/UpdatedHeroIconsToV… #4

Merge pull request #10 from mikeyoshino/2023-8-10/UpdatedHeroIconsToV…

Merge pull request #10 from mikeyoshino/2023-8-10/UpdatedHeroIconsToV… #4

Workflow file for this run

name: Publish to NuGet
on:
push:
branches:
- main # Trigger on push to the main branch
workflow_dispatch: # Allow manual kick off
jobs:
publish:
runs-on: ubuntu-latest # Use a Linux runner
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x' # Use .NET 6
- name: Set NuGet Key and Publish to NuGet
run: |
$Nuget_Key = "${{ secrets.PUBLISH_TO_NUGET_ORG }}"
./scripts/publish.ps1
shell: pwsh # Use PowerShell Core