From 8187269128a88047a6c601ab763e22f3dd9f2490 Mon Sep 17 00:00:00 2001 From: bytedream Date: Thu, 1 Feb 2024 14:45:12 +0100 Subject: [PATCH] Upload manpages and completions only once in ci --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5727dbd..ae289c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,7 @@ jobs: if-no-files-found: error - name: Upload manpages artifact + if: ${{ matrix.arch == 'x86_64' }} # only upload the manpages once uses: actions/upload-artifact@v4 with: name: manpages @@ -56,6 +57,7 @@ jobs: if-no-files-found: error - name: Upload completions artifact + if: ${{ matrix.arch == 'x86_64' }} # only upload the completions once uses: actions/upload-artifact@v4 with: name: completions