Release DisCatSharp Extensions #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Release DisCatSharp Extensions" | |
on: | |
workflow_dispatch: | |
inputs: | |
version_suffix: | |
description: "Version Suffix" | |
required: false | |
type: string | |
release_as_prerelease: | |
description: "Release as pre-release" | |
required: true | |
default: true | |
type: boolean | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true | |
jobs: | |
release: | |
timeout-minutes: 30 | |
runs-on: windows-latest | |
name: Build library and release | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: | | |
9.x | |
8.x | |
- name: Restore dependencies | |
run: dotnet restore --no-cache -f -v minimal | |
- name: Build library as full release | |
if: ${{!inputs.release_as_prerelease}} | |
shell: pwsh | |
run: ./rebuild-lib.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release | |
- name: Build library as pre-release | |
if: ${{inputs.release_as_prerelease}} | |
shell: pwsh | |
run: ./rebuild-lib.ps1 -ArtifactLocation ./dcs-artifacts -Configuration Release -VersionSuffix ${{github.event.inputs.version_suffix}} | |
- name: Remove invalid packages | |
shell: pwsh | |
run: rm *.symbols.* | |
working-directory: ./dcs-artifacts | |
- name: Publish to NuGet | |
shell: pwsh | |
run: dotnet nuget push --source https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} * --skip-duplicate | |
working-directory: ./dcs-artifacts | |
- name: Publish to GitHub Packages | |
shell: pwsh | |
run: dotnet nuget push --source https://nuget.pkg.github.com/Aiko-IT-Systems/index.json -k ${{secrets.GITHUB_TOKEN}} * | |
working-directory: ./dcs-artifacts |