Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add full plugin CLI release command #1222

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/plugin-guide/3.3/en/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ We provide a [CLI tool](https://github.com/pkp/pkp-plugin-cli/) that can help yo
npm install -g pkp-plugin-cli
```

Use the following to build a release package and upload it as a release to your repository on GitHub.
Use the following to build a release package and upload it as a release to your repository on GitHub, replacing the plugin name and version number with your own.

```
pkp-plugin release
pkp-plugin release pluginName --newversion 1.0.0.0
```

> Any non-essential files provided by your dependency manager (eg - composer, npm) should not be included with the package. These often include demos and examples that can be security risks when uploaded to the plugins directory.
Expand Down
4 changes: 2 additions & 2 deletions dev/plugin-guide/en/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ We provide a [CLI tool](https://github.com/pkp/pkp-plugin-cli/) that can help yo
npm install -g pkp-plugin-cli
```

Use the following to build a release package and upload it as a release to your repository on GitHub.
Use the following to build a release package and upload it as a release to your repository on GitHub, replacing the plugin name and version number with your own.

```
pkp-plugin release
pkp-plugin release pluginName --newversion 1.0.0.0
```

## Get the Plugin into the Plugin Gallery
Expand Down
Loading