File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 65
65
run : |
66
66
PACKAGE_VERSION=$(./bin/update-release-version.php get-version)
67
67
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"
69
69
70
70
- name : " Create detached signature for PECL package"
71
71
uses : mongodb-labs/drivers-github-tools/gpg-sign@v2
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107
107
run : |
108
108
PACKAGE_VERSION=$(./bin/update-release-version.php get-version)
109
109
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"
111
111
112
112
- name : " Install release archive to verify correctness"
113
113
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
55
55
PECL packages are made available as release artifacts on GitHub, as well as on
56
56
the [ PECL homepage] ( https://pecl.php.net/mongodb ) . The GitHub release will also
57
57
contain 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` ).
59
59
60
60
To verify the integrity of the downloaded package, run the following command:
61
61
62
62
``` 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
64
64
```
65
65
66
66
> [ !NOTE]
67
67
> No verification is done when using ` pecl ` to install the package. To ensure
68
68
> release integrity when using ` pecl ` , download the tarball manually from the
69
69
> 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 ` .
71
71
72
72
### Windows
73
73
You can’t perform that action at this time.
0 commit comments