Skip to content

Commit

Permalink
Deterministic build (#11)
Browse files Browse the repository at this point in the history
* Deterministic build

* Update version.json
  • Loading branch information
marcusturewicz committed Aug 28, 2021
1 parent c17e631 commit 169f568
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Test
run: dotnet test --no-build --verbosity normal -c Release
- name: Pack
run: dotnet pack src/Standards.AspNetCore -c Release --no-build
run: dotnet pack --no-build src/Standards.AspNetCore -c Release /p:ContinuousIntegrationBuild=true
- name: Push to GitHub Package Registry
if: github.event_name == 'push' && startswith(github.ref, 'refs/heads')
run: dotnet nuget push src/Standards.AspNetCore/bin/Release/*.nupkg
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"gitCommitIdShortAutoMinimum": 7,
"nugetPackageVersion": {
"semVer": 2
},
"publicReleaseRefSpec": [
"^refs/tags/v\\d+\\.\\d+"
]
}
}

0 comments on commit 169f568

Please sign in to comment.