Skip to content

GitHub release and NuGet deploy #39

GitHub release and NuGet deploy

GitHub release and NuGet deploy #39

Workflow file for this run

name: GitHub release and NuGet deploy
on:
workflow_dispatch:
inputs:
version:
description: 'Plugin Version (SemVer: https://semver.org)'
required: true
update_notes:
default: "-"
description: "Update Notes to Release"
required: true
jobs:
deploy:
name: "NuGet Deployment"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout Repository
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Update version
run: "sed -i \"s#<Version>0.0.0</Version>#<Version>${{ github.event.inputs.version }}</Version>#\" Dummy/Dummy.csproj"
- name: Update package version
run: "sed -i \"s#<PackageVersion>0.0.0</PackageVersion>#<PackageVersion>${{ github.event.inputs.version }}</PackageVersion>#\" Dummy/Dummy.csproj"
- name: Update informational version
run: "sed -i \"s#<InformationalVersion>0.0.0</InformationalVersion>#<InformationalVersion>${{ github.event.inputs.version }}</InformationalVersion>#\" Dummy/Dummy.csproj"
- name: Build
run: dotnet build Dummy/Dummy.csproj --configuration Release --no-restore
- name: Deploy to NuGet
run: dotnet nuget push Dummy/bin/Release/*.nupkg
--api-key ${{ secrets.NUGET_DEPLOY_KEY }}
--source https://api.nuget.org/v3/index.json
- name: Release to GitHub
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: |
Install plugin with command: `openmod install EvolutionPlugins.Dummy`
NuGet: https://www.nuget.org/packages/EvolutionPlugins.Dummy
Changelog:
${{ github.event.inputs.update_notes }}
release_name: EvolutionPlugins.Dummy v${{ github.event.inputs.version }}
tag_name: v${{ github.event.inputs.version }}