File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -117,17 +117,18 @@ jobs:
117
117
echo FILENAME="php_mongodb-${{ inputs.version }}-${{ inputs.php }}-${{ inputs.ts }}-${{ needs.build.outputs.vs }}-${{ inputs.arch == 'x64' && 'x64_86' || inputs.arch }}" >> "$GITHUB_ENV"
118
118
119
119
# In this step, we:
120
- # - update the extension DLL file name to match the expectation of pie
120
+ # - update the extension DLL and PDB file names to match the expectation of pie
121
121
# - copy the signature file from the release asset directory to avoid directory issues in the archive
122
122
# - rename the signature file to match the extension DLL file
123
123
- name : " Copy signature file and use correct file names"
124
124
run : |
125
125
mv php_mongodb.dll ${{ env.FILENAME }}.dll
126
+ mv php_mongodb.pdb ${{ env.FILENAME }}.pdb
126
127
cp ${RELEASE_ASSETS}/php_mongodb.dll.sig ${{ env.FILENAME }}.dll.sig
127
128
128
129
- name : " Create and upload release asset"
129
130
if : ${{ inputs.upload_release_asset }}
130
131
run : |
131
132
ARCHIVE=${{ env.FILENAME }}.zip
132
- zip ${ARCHIVE} ${{ env.FILENAME }}.dll ${{ env.FILENAME }}.dll.sig php_mongodb .pdb CREDITS CONTRIBUTING.md LICENSE README.md THIRD_PARTY_NOTICES
133
+ zip ${ARCHIVE} ${{ env.FILENAME }}.dll ${{ env.FILENAME }}.dll.sig ${{ env.FILENAME }} .pdb CREDITS CONTRIBUTING.md LICENSE README.md THIRD_PARTY_NOTICES
133
134
gh release upload ${{ inputs.version }} ${ARCHIVE}
You can’t perform that action at this time.
0 commit comments