Skip to content

Commit 8ac30ed

Browse files
committed
Fix wrong name for x64 packages
1 parent 741767a commit 8ac30ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-windows-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,6 @@ jobs:
119119
- name: "Create and upload release asset"
120120
if: ${{ inputs.upload_release_asset }}
121121
run: |
122-
ARCHIVE=php_mongodb-${{ inputs.version }}-${{ inputs.php }}-${{ inputs.ts }}-${{ needs.build.outputs.vs }}-${{ inputs.arch }}.zip
122+
ARCHIVE=php_mongodb-${{ inputs.version }}-${{ inputs.php }}-${{ inputs.ts }}-${{ needs.build.outputs.vs }}-${{ inputs.arch == 'x64' && 'x64_86' || inputs.arch }}.zip
123123
zip ${ARCHIVE} php_mongodb.dll php_mongodb.dll.sig php_mongodb.pdb CREDITS CONTRIBUTING.md LICENSE README.md THIRD_PARTY_NOTICES
124124
gh release upload ${{ inputs.version }} ${ARCHIVE}

0 commit comments

Comments
 (0)