Skip to content

Commit 5d86470

Browse files
committed
fix build
1 parent beb5ecb commit 5d86470

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,13 @@ jobs:
5050
- name: package-uninx
5151
if: ${{ matrix.os != 'windows-latest' }}
5252
run: |
53+
mkdir -p ${{ github.workspace }}/artifact/bin
5354
cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/bin
5455
python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
5556
- name: package-windows
5657
if: ${{ matrix.os == 'windows-latest' }}
5758
run: |
58-
New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact"
59+
New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact/bin"
5960
Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\bin
6061
python publish/workflow_copy_files.py . "${{ github.workspace }}/artifact"
6162
shell: pwsh

0 commit comments

Comments
 (0)