File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,13 @@ jobs:
50
50
- name : package-uninx
51
51
if : ${{ matrix.os != 'windows-latest' }}
52
52
run : |
53
+ mkdir -p ${{ github.workspace }}/artifact/bin
53
54
cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/bin
54
55
python publish/workflow_copy_files.py . ${{ github.workspace }}/artifact
55
56
- name : package-windows
56
57
if : ${{ matrix.os == 'windows-latest' }}
57
58
run : |
58
- New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact"
59
+ New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact/bin "
59
60
Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\bin
60
61
python publish/workflow_copy_files.py . "${{ github.workspace }}/artifact"
61
62
shell : pwsh
You can’t perform that action at this time.
0 commit comments