build(deps): bump @semantic-release/npm from 10.0.4 to 10.0.6 #41
Workflow file for this run
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
# This workflow demonstrates the minimal requirements for | |
# building, publishing, and packing a CSharp Project 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@v3 | |
- run: dotnet build src/SPV3.csproj -c Release -p:ContinuousIntegrationBuild=true | |
# ContinuousIntegrationBuild comes from dotnet/sourcelink. Make sure Deterministic is also true! |