Skip to content

Commit

Permalink
update pack command for sql lite wf
Browse files Browse the repository at this point in the history
  • Loading branch information
calebjenkins committed Dec 29, 2023
1 parent df3d131 commit 7bd61f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-ci-sql-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
if: ${{ steps.detect_develop.outcome == 'failure' }}

- name: Pack
run: dotnet pack --configuration Release /p:Version=${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER} --include-symbols --output .
run: dotnet pack src/KeyValueSqlLiteRepo/KeyValueSqlLiteRepo.csproj --configuration Release -p:PackageVersion=${{steps.get_version.outputs.RELEASE_VERSION}}-ci-${GITHUB_RUN_NUMBER} --include-symbols --output .
if: ${{ steps.detect_develop.outcome == 'success' }}


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-publish-sql-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
if: ${{ steps.detect_branch.outcome == 'failure' }}

- name: Pack
run: dotnet pack --configuration Release /p:Version=${{steps.get_version.outputs.RELEASE_VERSION}} --include-symbols --output .
run: dotnet pack src/KeyValueSqlLiteRepo/KeyValueSqlLiteRepo.csproj --configuration Release -p:PackageVersion=${{steps.get_version.outputs.RELEASE_VERSION}} --include-symbols --output .
if: ${{ steps.detect_branch.outcome == 'success' }}


Expand Down

0 comments on commit 7bd61f4

Please sign in to comment.