Skip to content

Commit 8629ebe

Browse files
Try to fix CI failure caused by non-unique name (meta) passed to download-artifact (#1433)
``` Unable to download artifact(s): Artifact not found for name: meta Please ensure that your artifact is not expired and the artifact was uploaded using a compatible version of toolkit/upload-artifact. For more information, visit the GitHub Artifacts FAQ: https://github.com/actions/toolkit/blob/main/packages/artifact/docs/faq.md ``` See also https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md#multiple-uploads-to-the-same-named-artifact
1 parent c835561 commit 8629ebe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
path: ${{ steps.set-version.outputs.name }}.vsix
7878
- uses: actions/upload-artifact@v4
7979
with:
80-
name: meta
80+
name: meta-build
8181
path: |
8282
.name
8383
.version
@@ -88,7 +88,7 @@ jobs:
8888
steps:
8989
- uses: actions/download-artifact@v4
9090
with:
91-
name: meta
91+
name: meta-beta
9292
path: .
9393
- name: Set an output
9494
id: set-version
@@ -118,7 +118,7 @@ jobs:
118118
token: ${{ secrets.TOKEN }}
119119
- uses: actions/download-artifact@v4
120120
with:
121-
name: meta
121+
name: meta-publish
122122
path: .
123123
- name: Use Node.js
124124
uses: actions/setup-node@v4

.github/workflows/prerelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
path: ${{ steps.set-version.outputs.name }}.vsix
7373
- uses: actions/upload-artifact@v4
7474
with:
75-
name: meta
75+
name: meta-build
7676
path: |
7777
.name
7878
.version
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
- uses: actions/download-artifact@v4
8585
with:
86-
name: meta
86+
name: meta-beta
8787
path: .
8888
- name: Set an output
8989
id: set-version
@@ -113,7 +113,7 @@ jobs:
113113
token: ${{ secrets.TOKEN }}
114114
- uses: actions/download-artifact@v4
115115
with:
116-
name: meta
116+
name: meta-publish
117117
path: .
118118
- name: Use Node.js
119119
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)