Skip to content

Commit

Permalink
Fix deployment script.
Browse files Browse the repository at this point in the history
  • Loading branch information
jianmingyong committed Dec 9, 2023
1 parent 40ae2e2 commit 3d1cf29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
- name: Build project
run: |
$output = Join-Path "${{ github.workspace }}" "${{ env.PROJECT_PUBLISH_ROOT }}"
dotnet pack -c Release -o "${output}"
dotnet publish -c Release -o "${output}" "${{ env.PROJECT_CSPROJ_FILE }}"
dotnet pack -c Release -o "${output}" "${{ env.PROJECT_CSPROJ_FILE }}"
- name: Publish project
run: |
Expand Down

0 comments on commit 3d1cf29

Please sign in to comment.