Fix CI artifact naming and dependency
This commit is contained in:
parent
3e67850957
commit
6c106f90fb
|
|
@ -47,7 +47,7 @@ jobs:
|
||||||
- name: Store release artifacts
|
- name: Store release artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist-folder
|
name: dist-release
|
||||||
path: |
|
path: |
|
||||||
dist
|
dist
|
||||||
|
|
||||||
|
|
@ -97,7 +97,7 @@ jobs:
|
||||||
- name: Store release artifacts
|
- name: Store release artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist-dll
|
name: dist-release-dll
|
||||||
path: |
|
path: |
|
||||||
dist
|
dist
|
||||||
|
|
||||||
|
|
@ -116,12 +116,12 @@ jobs:
|
||||||
- name: Download release artifacts
|
- name: Download release artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist-release
|
||||||
|
|
||||||
- name: Download release-dll artifacts
|
- name: Download release-dll artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist-dll
|
name: dist-release-dll
|
||||||
|
|
||||||
- name: List files
|
- name: List files
|
||||||
run: "dir /A-D /S /B"
|
run: "dir /A-D /S /B"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue