diff options
author | numToStr <vikasraj1911@gmail.com> | 2021-12-14 20:26:48 +0530 |
---|---|---|
committer | numToStr <vikasraj1911@gmail.com> | 2021-12-14 20:26:48 +0530 |
commit | cb839c5c6cee9f61c977ba947c1ce74adaa6f66f (patch) | |
tree | 1a7626eee470993ce84b8d7393f54a88745938fb /.github/workflows | |
parent | ed386bd307f90d8b630575e188acc245c5d8c7c6 (diff) | |
download | lua-language-server-cb839c5c6cee9f61c977ba947c1ce74adaa6f66f.zip |
fix: exclude `build` folder from submodule asset
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 59349a2b..9f356226 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -109,7 +109,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 "${{ env.BIN_DIR }}*" -x "${STAGING}*" + zip -r $PKG_SUBMOD_PATH ./ -x "*.git*" -x "*.vscode*" -x "build*" -x "${{ env.BIN_DIR }}*" -x "${STAGING}*" echo ::set-output name=PKG_SUBMOD_PATH::${PKG_SUBMOD_PATH} |