Skip to content

Commit

Permalink
Merge pull request #12 from NapalmCodes/feat/6
Browse files Browse the repository at this point in the history
Deterministic builds
  • Loading branch information
NapalmCodes authored Aug 27, 2024
2 parents 9a6d7a7 + 558ef12 commit 0f45f6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
dotnet-version: '8.0.x'

- name: Build
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG -p:Version=$BUILD_VERSION
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG /p:ContinuousIntegrationBuild=true -p:Version=$BUILD_VERSION

- name: Publish
if: startsWith(github.ref, 'refs/heads/release')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
dotnet-version: '8.0.x'

- name: Build
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG /p:ContinuousIntegrationBuild=true

0 comments on commit 0f45f6d

Please sign in to comment.