Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Oct 31, 2024
1 parent beb5ecb commit 5d86470
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,13 @@ jobs:
- name: package-uninx
if: ${{ matrix.os != 'windows-latest' }}
run: |
mkdir -p ${{ github.workspace }}/artifact/bin
cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/bin
python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
- name: package-windows
if: ${{ matrix.os == 'windows-latest' }}
run: |
New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact"
New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact/bin"
Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\bin
python publish/workflow_copy_files.py . "${{ github.workspace }}/artifact"
shell: pwsh
Expand Down

0 comments on commit 5d86470

Please sign in to comment.