From caa4f382320e8df865e455cb7ce817167a4ee3a4 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sat, 25 Sep 2021 01:54:29 -0400 Subject: [PATCH] ci: add missing step for compressing completion files (#586) --- .github/workflows/nightly.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e7ba1617..1a012253 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -244,6 +244,12 @@ jobs: asset_name: ${{ env.ASSET }} asset_content_type: application/octet-stream + - name: Compress completion files (Linux x86-64 GNU) + if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == '' + shell: bash + run: | + tar -C ./completion -czvf completion.tar.gz . + - name: Release completion files (Linux x86-64 GNU) if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == '' && github.event.inputs.isMock != 'mock' uses: actions/upload-release-asset@v1.0.1