Skip to content

Commit 49803c3

Browse files
committed
- Add merge step
1 parent fe1c53a commit 49803c3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/main.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,20 @@ jobs:
102102
path: |
103103
OpenDirectoryDownloader-${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}${{ matrix.suffix }}.zip
104104
105+
106+
# Merge native executables into the same directory
107+
merge:
108+
runs-on: ubuntu-latest
109+
needs: [ build ]
110+
steps:
111+
- name: Merge Artifacts
112+
uses: actions/upload-artifact/merge@v4
113+
with:
114+
name: artifacts
115+
pattern: artifacts-*
105116

106117
release:
107-
needs: build
118+
needs: merge
108119
runs-on: ubuntu-latest
109120

110121
steps:

0 commit comments

Comments
 (0)