Skip to content

Commit 9c81407

Browse files
fix: upload artifact directly without glob pattern
Change path from release/* to release/${{ matrix.platform.artifact_name }} to ensure exactly one file is uploaded per artifact. closes #2
1 parent c12fc73 commit 9c81407

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
uses: actions/upload-artifact@v4
8383
with:
8484
name: ${{ matrix.platform.artifact_name }}
85-
path: release/*
85+
path: release/${{ matrix.platform.artifact_name }}
8686
retention-days: 5
8787

8888
create-release:

0 commit comments

Comments
 (0)