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:
117117 echo FILENAME="php_mongodb-${{ inputs.version }}-${{ inputs.php }}-${{ inputs.ts }}-${{ needs.build.outputs.vs }}-${{ inputs.arch == 'x64' && 'x64_86' || inputs.arch }}" >> "$GITHUB_ENV"
118118
119119 # 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
121121 # - copy the signature file from the release asset directory to avoid directory issues in the archive
122122 # - rename the signature file to match the extension DLL file
123123 - name : " Copy signature file and use correct file names"
124124 run : |
125125 mv php_mongodb.dll ${{ env.FILENAME }}.dll
126+ mv php_mongodb.pdb ${{ env.FILENAME }}.pdb
126127 cp ${RELEASE_ASSETS}/php_mongodb.dll.sig ${{ env.FILENAME }}.dll.sig
127128
128129 - name : " Create and upload release asset"
129130 if : ${{ inputs.upload_release_asset }}
130131 run : |
131132 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
133134 gh release upload ${{ inputs.version }} ${ARCHIVE}
You can’t perform that action at this time.
0 commit comments