summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-09-25 01:54:29 -0400
committerGitHub <noreply@github.com>2021-09-25 01:54:29 -0400
commitcaa4f382320e8df865e455cb7ce817167a4ee3a4 (patch)
tree009905caf31331d99e9ac8ae09fe3de2f2e3e5d9
parente20057b97c441db44c1bff048db5c1e9aebc14f0 (diff)
ci: add missing step for compressing completion files (#586)
-rw-r--r--.github/workflows/nightly.yml6
1 files changed, 6 insertions, 0 deletions
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