From 2e19f0e55175b7cf16088c05c2efe678c988ac18 Mon Sep 17 00:00:00 2001 From: nerix Date: Sun, 23 Jun 2024 00:13:14 +0200 Subject: [PATCH] ci: restore glob (#470) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7505585..278afee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -139,7 +139,7 @@ jobs: uses: ncipollo/release-action@v1 if: contains(github.ref, 'refs/tags/v') with: - artifacts: 'artifacts/*' + artifacts: 'artifacts/**/*' token: ${{ secrets.GITHUB_TOKEN }} generateReleaseNotes: false allowUpdates: true @@ -151,7 +151,7 @@ jobs: uses: ncipollo/release-action@v1 if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' with: - artifacts: 'artifacts/*' + artifacts: 'artifacts/**/*' token: ${{ secrets.GITHUB_TOKEN }} generateReleaseNotes: false replacesArtifacts: true