File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -50,14 +50,13 @@ jobs:
50
50
- name : package-unix
51
51
if : ${{ matrix.os != 'windows-latest' }}
52
52
run : |
53
- ls -R target
54
- cp target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/
55
- cp resources ${{ github.workspace }}/artifact/ -r
53
+ cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/
54
+ cp ${{ github.workspace }}/resources ${{ github.workspace }}/artifact/ -r
56
55
- name : package-windows
57
56
if : ${{ matrix.os == 'windows-latest' }}
58
57
run : |
59
- powershell -Command "Copy-Item -Path target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\"
60
- powershell -Command "Copy-Item -Path resources -Destination ${{ github.workspace }}\artifact\ -Recurse"
58
+ powershell -Command "Copy-Item -Path ${{ github.workspace }}\ target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\"
59
+ powershell -Command "Copy-Item -Path ${{ github.workspace }}\ resources -Destination ${{ github.workspace }}\artifact\ -Recurse"
61
60
- name : Upload
62
61
uses : actions/upload-artifact@v3
63
62
with :
You can’t perform that action at this time.
0 commit comments