Skip to content

Commit 04e2188

Browse files
Fix wrong artifact path in CI publish job
This patch fixes a wrong path in publish CI job. Turned out the artifacts are downloaded to `./<artifact-name>/<artifact>` and not in `./<artifact>` as it's been expected. Thus, the artifact has been downloaded in the unexpected directory. Let's rename the artifact name to `tarantool-vscode` for the job to seek in the same directory name as the `.vsix` name.
1 parent 181c9f8 commit 04e2188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Upload
3131
uses: actions/upload-artifact@v4
3232
with:
33-
name: Tarantool VSCode
33+
name: tarantool-vscode
3434
path: ${{ github.workspace }}/tarantool-vscode.vsix
3535

3636
publish:

0 commit comments

Comments
 (0)