Skip to content

Commit a61a3e8

Browse files
author
ladeak
committed
Fix paths in CD
1 parent eb4c85f commit a61a3e8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/CD.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ jobs:
9191
src/CHttpExecutor/bin/Release/${{ env.GH_PACKAGE_VERSION }}/linux-x64/publish/chttpexec-linux-x64
9292
- name: Build VSCodeExtension dependencies
9393
run: |
94-
dotnet publish src/CHttpExtension -r win-x64 -f net9.0 # .NET 9
94+
dotnet publish src/CHttpExtension -r linux-x64 -f net9.0 # .NET 9
9595
- name: Upload CHttpExtension file to artifacts
9696
uses: actions/upload-artifact@v4
9797
with:
9898
name: CHttpExtension-Linux # The name of the artifact bundle
99-
path: src/CHttpExtension/linux-x64/publish/*
99+
path: src/CHttpExtension/bin/Release/net9.0/linux-x64/publish/*
100100

101101
cross-compile-windows-aot:
102102
runs-on: windows-latest
@@ -125,12 +125,12 @@ jobs:
125125
src/CHttp/bin/Release/${{ env.GH_PACKAGE_VERSION }}/win-arm64/publish/chttp-win-arm64-aot.exe
126126
- name: Build VSCodeExtension dependencies
127127
run: |
128-
dotnet publish src/CHttpExtension -r linux-x64 -f net9.0 # .NET 9
128+
dotnet publish src/CHttpExtension -r win-x64 -f net9.0 # .NET 9
129129
- name: Upload CHttpExtension file to artifacts
130130
uses: actions/upload-artifact@v4
131131
with:
132132
name: CHttpExtension-Windows # The name of the artifact bundle
133-
path: src/CHttpExtension/linux-x64/publish/*
133+
path: src/CHttpExtension/bin/Release/net9.0/win-x64/publish/*
134134

135135
build-and-deploy-vscodeextension:
136136
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)