File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,15 +50,15 @@ jobs:
50
50
- name : package-uninx
51
51
if : ${{ matrix.os != 'windows-latest' }}
52
52
run : |
53
+ python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
53
54
mkdir -p ${{ github.workspace }}/artifact/bin
54
55
cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/bin
55
- python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
56
56
- name : package-windows
57
57
if : ${{ matrix.os == 'windows-latest' }}
58
58
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
61
59
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
62
62
shell : pwsh
63
63
- name : Upload
64
64
uses : actions/upload-artifact@v3
You can’t perform that action at this time.
0 commit comments