Skip to content

Core v1.0.0-preview.2 / Abstractions v1.0.0-preview.1 #9

Core v1.0.0-preview.2 / Abstractions v1.0.0-preview.1

Core v1.0.0-preview.2 / Abstractions v1.0.0-preview.1 #9

Workflow file for this run

name: Release
on:
release:
types: [released]
jobs:
build:
runs-on: windows-latest
steps:
- name: 🚚 Checkout code
uses: actions/checkout@v4
- name: 🛠️ Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: ✏️ Set abstractions version from CHANGELOG.md
shell: pwsh
run: ./scripts/Set-VersionFromChangelog.ps1 -ChangelogPath DG.XrmPluginCore.Abstractions/CHANGELOG.md -CsprojPath DG.XrmPluginCore.Abstractions/DG.XrmPluginCore.Abstractions.csproj
- name: ✏️ Set implementations version from CHANGELOG.md
shell: pwsh
run: ./scripts/Set-VersionFromChangelog.ps1 -ChangelogPath DG.XrmPluginCore/CHANGELOG.md -CsprojPath DG.XrmPluginCore/DG.XrmPluginCore.csproj
- name: 📦 Restore dependencies
run: dotnet restore
- name: 🔨 Build
run: dotnet build --configuration Release --no-restore
- name: ✅ Run tests
run: dotnet test --configuration Release --no-build --verbosity normal
- name: 📦 Pack
run: dotnet pack --configuration Release --no-build --output ./nupkg
- name: 📤 Upload artifacts
uses: actions/upload-artifact@v4
with:
name: packages
path: ./nupkg
- name: 🚀 Publish to NuGet
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: dotnet nuget push ./nupkg/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate