UNPKG

@halospv3/hce.shared-config

Version:

Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.

23 lines (20 loc) 674 B
# This workflow demonstrates the minimal requirements for # building with DotNet CLI on: push: pull_request: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: submodules: 'recursive' fetch-depth: 0 - uses: actions/setup-dotnet@v4 - run: dotnet build src/SPV3.csproj -c Release -p:ContinuousIntegrationBuild=true # ContinuousIntegrationBuild comes from dotnet/sourcelink. # Make sure Deterministic is also true! # If you use this package's dotnet props/targets files, you're good to go! # # Alternatively, add a PropertyGroup with the condition " '$(CI)' != '' "