Skip to content

Commit dce5419

Browse files
committed
Update PECL package name to match pie naming
1 parent 2ca4816 commit dce5419

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/package-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
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

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@ gpg --import php-driver.asc
5555
PECL packages are made available as release artifacts on GitHub, as well as on
5656
the [PECL homepage](https://pecl.php.net/mongodb). The GitHub release will also
5757
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`).
5959

6060
To 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

0 commit comments

Comments
 (0)