Skip to content

Commit ab2404d

Browse files
committed
fix build
1 parent 5d86470 commit ab2404d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
- name: package-uninx
5151
if: ${{ matrix.os != 'windows-latest' }}
5252
run: |
53+
python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
5354
mkdir -p ${{ github.workspace }}/artifact/bin
5455
cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/bin
55-
python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
5656
- name: package-windows
5757
if: ${{ matrix.os == 'windows-latest' }}
5858
run: |
59-
New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact/bin"
60-
Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\bin
6159
python publish/workflow_copy_files.py . "${{ github.workspace }}/artifact"
60+
New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact/bin"
61+
Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\bin
6262
shell: pwsh
6363
- name: Upload
6464
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)