File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 6565 run : |
6666 PACKAGE_VERSION=$(./bin/update-release-version.php get-version)
6767 echo "PACKAGE_VERSION=${PACKAGE_VERSION}" >> "$GITHUB_ENV"
68- echo "PACKAGE_FILE=mongodb -${PACKAGE_VERSION}.tgz" >> "$GITHUB_ENV"
68+ echo "PACKAGE_FILE=php_mongodb -${PACKAGE_VERSION}-src .tgz" >> "$GITHUB_ENV"
6969
7070 - name : " Create detached signature for PECL package"
7171 uses : mongodb-labs/drivers-github-tools/gpg-sign@v2
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107107 run : |
108108 PACKAGE_VERSION=$(./bin/update-release-version.php get-version)
109109 echo "PACKAGE_VERSION=${PACKAGE_VERSION}" >> "$GITHUB_ENV"
110- echo "PACKAGE_FILE=mongodb -${PACKAGE_VERSION}.tgz" >> "$GITHUB_ENV"
110+ echo "PACKAGE_FILE=php_mongodb -${PACKAGE_VERSION}-src .tgz" >> "$GITHUB_ENV"
111111
112112 - name : " Install release archive to verify correctness"
113113 run : sudo pecl install ${{ env.PACKAGE_FILE }}
Original file line number Diff line number Diff line change @@ -55,19 +55,19 @@ gpg --import php-driver.asc
5555PECL packages are made available as release artifacts on GitHub, as well as on
5656the [ PECL homepage] ( https://pecl.php.net/mongodb ) . The GitHub release will also
5757contain a detached signature file for the PECL package (named
58- ` mongodb -X.Y.Z.tgz.sig` ).
58+ ` php_mongodb -X.Y.Z-src .tgz.sig` ).
5959
6060To verify the integrity of the downloaded package, run the following command:
6161
6262``` shell
63- gpg --verify mongodb -X.Y.Z.tgz.sig mongodb -X.Y.Z.tgz
63+ gpg --verify php_mongodb -X.Y.Z-src .tgz.sig php_mongodb -X.Y.Z-src .tgz
6464```
6565
6666> [ !NOTE]
6767> No verification is done when using ` pecl ` to install the package. To ensure
6868> release integrity when using ` pecl ` , download the tarball manually from the
6969> GitHub release, verify the signature, then install the package from the
70- > downloaded tarball using ` pecl install mongodb -X.Y.Z.tgz ` .
70+ > downloaded tarball using ` pecl install php_mongodb -X.Y.Z-src .tgz ` .
7171
7272### Windows
7373
You can’t perform that action at this time.
0 commit comments