Skip to content

Bump version to 0.2.0 #51

Bump version to 0.2.0

Bump version to 0.2.0 #51

Workflow file for this run

name: Publish to GitHub
on:
push:
branches:
- main
env:
CONFIGURATION: Release
jobs:
build:
# Sets permissions of the GITHUB_TOKEN to allow release creating
permissions:
packages: write
environment:
name: nuget
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup necessary dotnet SDKs
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
dotnet-version: |
8.x
- name: Add the GitHub source
run: dotnet nuget add source --name "github.com" "https://nuget.pkg.github.com/fsprojects/index.json"
- name: Ensure NuGet package source mapping
shell: pwsh
run: |
$nugetConfigPath = "$HOME/.nuget/NuGet/NuGet.Config"
[xml]$nugetConfig = Get-Content $nugetConfigPath
$packageSourceMapping = $nugetConfig.configuration.packageSourceMapping
if ($packageSourceMapping -ne $null) {
$packageSourceMapping.RemoveAll()
} else {
$packageSourceMapping = $nugetConfig.CreateElement("packageSourceMapping")
$nugetConfig.configuration.AppendChild($packageSourceMapping)
}
$nugetSource = $nugetConfig.CreateElement("packageSource")
$nugetSource.SetAttribute("key", "nuget.org")
$nugetPattern = $nugetConfig.CreateElement("package")
$nugetPattern.SetAttribute("pattern", "*")
$nugetSource.AppendChild($nugetPattern)
$packageSourceMapping.AppendChild($nugetSource)
$nugetConfig.Save($nugetConfigPath)
- name: Publish to GitHub
env:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FAKE_DETAILED_ERRORS: true
ENABLE_COVERAGE: false # AltCover doesn't work with Release builds, reports lower coverage than actual
run: |
chmod +x ./build.sh
./build.sh "PublishToGitHub"