File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 80
80
- name : " Copy signature file"
81
81
run : cp ${RELEASE_ASSETS}/${{ env.PACKAGE_FILE }}.sig .
82
82
83
- - name : " Upload artifacts"
84
- uses : actions/upload-artifact@v4
85
- with :
86
- name : ${{ env.PACKAGE_FILE }}
87
- path : |
88
- ${{ env.PACKAGE_FILE }}
89
- ${{ env.PACKAGE_FILE }}.sig
90
- retention-days : 3
91
-
92
83
- name : " Upload release artifacts"
93
84
run : gh release upload ${{ inputs.version }} ${{ env.PACKAGE_FILE }} ${{ env.PACKAGE_FILE }}.sig
94
- continue-on-error : true
95
85
96
86
build-windows :
97
87
name : " Create Windows package"
@@ -193,24 +183,8 @@ jobs:
193
183
- name : " Copy signature file"
194
184
run : cp ${RELEASE_ASSETS}/php_mongodb.dll.sig .
195
185
196
- - name : " Upload DLL and PDB files as build artifacts"
197
- uses : actions/upload-artifact@v4
198
- with :
199
- name : php_mongodb-${{ inputs.version }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}
200
- path : |
201
- php_mongodb.dll
202
- php_mongodb.dll.sig
203
- php_mongodb.pdb
204
- CREDITS
205
- CONTRIBUTING.md
206
- LICENSE
207
- README.md
208
- THIRD_PARTY_NOTICES
209
- retention-days : 3
210
-
211
186
- name : " Create and upload release artifact"
212
187
run : |
213
188
ARCHIVE=php_mongodb-${{ inputs.version }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}.zip
214
189
zip ${ARCHIVE} php_mongodb.dll php_mongodb.dll.sig php_mongodb.pdb CREDITS CONTRIBUTING.md LICENSE README.md THIRD_PARTY_NOTICES
215
190
gh release upload ${{ inputs.version }} ${ARCHIVE}
216
- continue-on-error : true
You can’t perform that action at this time.
0 commit comments