diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-02-02 15:32:36 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-02-02 15:32:36 +0800 |
commit | e28d88a96995c617427534e93cf7affcd202f8e2 (patch) | |
tree | cf45c29810e351bb0afa3b099eb7126e4bd0aa03 /.github/workflows | |
parent | 034d4f4793e0934a697e8cf2c6219e8c5648472d (diff) | |
download | lua-language-server-e28d88a96995c617427534e93cf7affcd202f8e2.zip |
fix #1869
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 535deca7..f45a4b70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -130,7 +130,7 @@ jobs: PKG_SUBMOD_NAME="${{ env.PROJECT }}-${{ steps.vars.outputs.PKG_VERSION }}-submodules.zip" PKG_SUBMOD_PATH="${STAGING}/$PKG_SUBMOD_NAME" - zip -r $PKG_SUBMOD_PATH ./ -x "*.git*" -x "*.vscode*" -x "build*" -x "${{ env.BIN_DIR }}*" -x "${STAGING}*" + zip -r $PKG_SUBMOD_PATH ./ -x "*.git*" -x "*.vscode*" -x "build*" -x "${{ env.BIN_DIR }}*" -x "${STAGING}*" -x "3rd/json.lua" -x "log" echo PKG_SUBMOD_PATH=${PKG_SUBMOD_PATH} >> $GITHUB_OUTPUT |