From 1bd16f7064efd01f38447d1c462f3e1f69849b8f Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 17 Feb 2021 16:27:13 -0500 Subject: [PATCH] add completions to github release --- .github/workflows/release.yml | 76 +++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5fb5eee..2d65461 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,3 +73,79 @@ jobs: asset_path: ./target/${{ matrix.target }}/release/mmtc${{ matrix.ext }} asset_name: mmtc-${{ matrix.target }}${{ matrix.ext }} asset_content_type: application/octet-stream + + completions: + name: completions + needs: create_release + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + + - name: Cargo build + uses: actions-rs/cargo@v1 + with: + command: build + + - name: Find generated completions + run: | + outputs=(target/debug/build/mmtc-*/out/completions) + cp -r "${outputs[0]}" completions + + - name: Upload bash completion + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: ./completions/mmtc.bash + asset_name: mmtc.bash + asset_content_type: text/plain + + - name: Upload elvish completion + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: ./completions/mmtc.elv + asset_name: mmtc.elv + asset_content_type: text/plain + + - name: Upload fish completion + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: ./completions/mmtc.fish + asset_name: mmtc.fish + asset_content_type: text/plain + + - name: Upload powershell completion + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: ./completions/_mmtc.ps1 + asset_name: mmtc.ps1 + asset_content_type: text/plain + + - name: Upload zsh completion + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ github.token }} + with: + upload_url: ${{ needs.create_release.outputs.upload_url }} + asset_path: ./completions/_mmtc + asset_name: mmtc.zsh + asset_content_type: text/plain