Skip to content

Commit

Permalink
Deterministic build for real
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusturewicz committed Sep 3, 2021
1 parent d8d52c0 commit ac1d2a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
run: dotnet build --no-restore -c Release /p:ContinuousIntegrationBuild=true
- name: Test
run: dotnet test --no-build --verbosity normal -c Release
- name: Pack
run: dotnet pack --no-build src/Standards.AspNetCore -c Release /p:ContinuousIntegrationBuild=true
run: dotnet pack --no-build src/Standards.AspNetCore -c Release
- 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
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"gitCommitIdShortAutoMinimum": 7,
"nugetPackageVersion": {
"semVer": 2
Expand Down

0 comments on commit ac1d2a6

Please sign in to comment.