Skip to content

Commit 9bc9943

Browse files
committed
Fix build
1 parent 373599b commit 9bc9943

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
pre-release: true
3030
- name: Build-General
3131
if: matrix.target != 'linux-musl-x64'
32-
run: dotnet publish EmmyLua.LanguageServer -r ${{ matrix.target }} -c Release -o ${{ github.workspace }}/artifact/${{ matrix.platform }} --sc /p:DebugType=None
32+
run: dotnet publish EmmyLua.LanguageServer -r ${{ matrix.target }} -c Release -o ${{ github.workspace }}/artifact/ --sc /p:DebugType=None
3333
# enable for donet9 support
3434
- name: Build-Linux-Arm64
3535
if: matrix.target == 'linux-musl-x64'
3636
run: |
3737
dotnet tool install --global dotnet-cross
38-
dotnet cross publish EmmyLua.LanguageServer -r linux-musl-x64 -c Release -o ${{ github.workspace }}/artifact/${{ matrix.platform }} --sc /p:DebugType=None
38+
dotnet cross publish EmmyLua.LanguageServer -r linux-musl-x64 -c Release -o ${{ github.workspace }}/artifact/ --sc /p:DebugType=None
3939
- name: Upload
4040
uses: actions/upload-artifact@v3
4141
with:

0 commit comments

Comments
 (0)