We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1e6d49 commit aedf9b3Copy full SHA for aedf9b3
1 file changed
.github/workflows/build.yml
@@ -95,10 +95,21 @@ jobs:
95
shell: bash
96
run: ls ${{github.workspace}}/build
97
98
- - name: Upload build artifacts
99
- uses: actions/upload-artifact@v6
+ # merge all into one upload
+ upload_artifacts:
100
+ needs: build
101
+ runs-on: ubuntu-22.04
102
+ steps:
103
+ - uses: actions/checkout@v6
104
+ - name: Download build artifacts
105
+ uses: actions/download-artifact@v7
106
with:
- name: build-artifacts-${{ matrix.build-type }}
- path: ${{github.workspace}}/build
107
+ name: build-artifacts-Release
108
+
109
+ #- name: Upload build artifacts
110
+ #uses: actions/upload-artifact@v6
111
+ #with:
112
+ #name: build-artifacts-${{ matrix.build-type }}
113
+ #path: ${{github.workspace}}/build
114
115
0 commit comments