Skip to content

Commit 130da89

Browse files
committed
update bin
1 parent 27783c6 commit 130da89

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ jobs:
1414
submodules : recursive
1515
- uses: actboy168/setup-luamake@master
1616
- run: luamake
17-
- uses: actions/upload-artifact@v2
18-
with:
19-
name: lua-language-server
20-
path: |
21-
bin
22-
!bin/**/*.lib
23-
!bin/**/*.exp
2417
resource:
2518
runs-on: ubuntu-latest
2619
steps:
@@ -38,3 +31,6 @@ jobs:
3831
locale
3932
meta
4033
script
34+
bin-Windows
35+
bin-Linux
36+
bin-macOS

make.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ local lm = require 'luamake'
22
local platform = require 'bee.platform'
33
local exe = platform.OS == 'Windows' and ".exe" or ""
44

5-
lm.bindir = platform.OS
5+
lm.bindir = 'bin-' .. platform.OS
66

77
lm.EXE_DIR = ""
88
lm:import "3rd/bee.lua/make.lua"

0 commit comments

Comments
 (0)