From bbdca0f91f9d6dc3b57e9a989ce99a217a4346a2 Mon Sep 17 00:00:00 2001 From: Eugen Eisler Date: Sat, 17 Aug 2024 12:49:15 +0200 Subject: [PATCH] fix(ci): fix names of artifacts to upload --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 20ce26e..0bd87a4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -52,8 +52,8 @@ jobs: - name: Upload build artifact uses: actions/upload-artifact@v3 with: - name: fabric-${{ matrix.os }}-${{ matrix.arch }}-${{ github.ref_name }} - path: fabric-${{ matrix.os }}-${{ matrix.arch }}-${{ github.ref_name }} + name: fabric-*-${{ matrix.arch }}-${{ github.ref_name }} + path: fabric-*-${{ matrix.arch }}-${{ github.ref_name }} - name: Upload release artifact if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')