Skip to content

Make IdFactory static; #85

Make IdFactory static;

Make IdFactory static; #85

Workflow file for this run

name: ImGui.Forms Release
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: nuget/setup-nuget@v1
# Setup the build
- name: Wait for other release builds
uses: softprops/turnstyle@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.303
# Upload ImGui.Forms to nuget.org
- name: Publish ImGui.Forms
uses: brandedoutcast/publish-nuget@v2
with:
PROJECT_FILE_PATH: ImGui.Forms/ImGui.Forms.csproj
VERSION_FILE_PATH: ImGui.Forms/ImGui.Forms.nuspec
VERSION_REGEX: '^\s*<version>(.*)<\/version>\s*$'
TAG_FORMAT: '*'
NUGET_KEY: ${{secrets.NUGET_API_KEY}}