ci: distribute completion files separately (#494)
This commit is contained in:
parent
63f9ed6199
commit
0c3f9daa56
|
@ -384,3 +384,20 @@ jobs:
|
||||||
asset_path: bottom.rb
|
asset_path: bottom.rb
|
||||||
asset_name: bottom.rb
|
asset_name: bottom.rb
|
||||||
asset_content_type: application/octet-stream
|
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 == ''
|
||||||
|
uses: actions/upload-release-asset@v1.0.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ env.RELEASE_UPLOAD_URL }}
|
||||||
|
asset_path: completion.tar.gz
|
||||||
|
asset_name: completion.tar.gz
|
||||||
|
asset_content_type: application/octet-stream
|
||||||
|
|
|
@ -270,3 +270,20 @@ jobs:
|
||||||
asset_path: bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
asset_path: bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
||||||
asset_name: bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
asset_name: bottom_${{ env.RELEASE_VERSION }}_amd64.deb
|
||||||
asset_content_type: application/octet-stream
|
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 == ''
|
||||||
|
uses: actions/upload-release-asset@v1.0.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ env.RELEASE_UPLOAD_URL }}
|
||||||
|
asset_path: completion.tar.gz
|
||||||
|
asset_name: completion.tar.gz
|
||||||
|
asset_content_type: application/octet-stream
|
||||||
|
|
Loading…
Reference in New Issue