From aff58e276342276fd7bf4dec5cf3823755f02937 Mon Sep 17 00:00:00 2001 From: Ehab Younes Date: Thu, 5 Mar 2026 02:08:19 +0300 Subject: [PATCH] fix(ci): remove `archive: false` from release workflows With `archive: false`, the `name` parameter is ignored and the artifact name becomes the uploaded filename. This broke the publish workflow which downloads artifacts by name. --- .github/workflows/ci.yaml | 2 -- .github/workflows/pre-release.yaml | 1 - .github/workflows/release.yaml | 1 - 3 files changed, 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d25676f6..211ba652 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -125,7 +125,6 @@ jobs: if: github.event_name == 'pull_request' uses: actions/upload-artifact@v7 with: - name: extension-pr-${{ github.event.pull_request.number }} path: ${{ steps.setup.outputs.packageName }} if-no-files-found: error retention-days: 7 @@ -135,7 +134,6 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/main' uses: actions/upload-artifact@v7 with: - name: extension-main-${{ github.sha }} path: ${{ steps.setup.outputs.packageName }} if-no-files-found: error archive: false diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 151875f6..4c50ca19 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -66,7 +66,6 @@ jobs: name: extension-${{ steps.version.outputs.version }} path: ${{ steps.setup.outputs.packageName }} if-no-files-found: error - archive: false publish: name: Publish Extension and Create Pre-Release diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 673a423d..17c43c74 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -66,7 +66,6 @@ jobs: name: extension-${{ steps.version.outputs.version }} path: ${{ steps.setup.outputs.packageName }} if-no-files-found: error - archive: false publish: name: Publish Extension and Create Release