Skip to content

Commit f98cc1d

Browse files
committed
fix(ci): remove archive: false from release workflows
Artifacts uploaded with `archive: false` cannot be found by download-artifact when looked up by name, breaking the publish workflow.
1 parent f75b9c4 commit f98cc1d

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ jobs:
125125
if: github.event_name == 'pull_request'
126126
uses: actions/upload-artifact@v7
127127
with:
128-
name: extension-pr-${{ github.event.pull_request.number }}
129128
path: ${{ steps.setup.outputs.packageName }}
130129
if-no-files-found: error
131130
retention-days: 7
@@ -135,7 +134,6 @@ jobs:
135134
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
136135
uses: actions/upload-artifact@v7
137136
with:
138-
name: extension-main-${{ github.sha }}
139137
path: ${{ steps.setup.outputs.packageName }}
140138
if-no-files-found: error
141139
archive: false

.github/workflows/pre-release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ jobs:
6666
name: extension-${{ steps.version.outputs.version }}
6767
path: ${{ steps.setup.outputs.packageName }}
6868
if-no-files-found: error
69-
archive: false
7069

7170
publish:
7271
name: Publish Extension and Create Pre-Release

.github/workflows/release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ jobs:
6666
name: extension-${{ steps.version.outputs.version }}
6767
path: ${{ steps.setup.outputs.packageName }}
6868
if-no-files-found: error
69-
archive: false
7069

7170
publish:
7271
name: Publish Extension and Create Release

0 commit comments

Comments
 (0)