Skip to content

Commit 947b907

Browse files
committed
Fixes clash of atifact names
1 parent 4f7b38e commit 947b907

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Save dist folder
2121
uses: actions/upload-artifact@v4
2222
with:
23-
name: dist
23+
name: dist-release
2424
path: ./new-dist/
2525

2626
commit:
@@ -41,7 +41,7 @@ jobs:
4141
- name: Download dist from prev job
4242
uses: actions/download-artifact@v4
4343
with:
44-
name: dist
44+
name: dist-release
4545
path: dist/
4646

4747
- name: Update version

.github/workflows/test-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Save dist folder
3535
uses: actions/upload-artifact@v4
3636
with:
37-
name: dist
37+
name: dist-test
3838
path: ./new-dist/
3939
tests:
4040
runs-on: ubuntu-latest
@@ -53,7 +53,7 @@ jobs:
5353
- name: Download dist from build job
5454
uses: actions/download-artifact@v4
5555
with:
56-
name: dist
56+
name: dist-test
5757
path: dist/
5858

5959
- name: Prepare files for tests

0 commit comments

Comments
 (0)