From e41b170f47aeb455872ffd42a6535f48d217f682 Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Tue, 4 Jun 2024 12:48:39 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Mikhail Beck --- doc/developer-guide.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/developer-guide.md b/doc/developer-guide.md index 8fa757f..ed0fd23 100644 --- a/doc/developer-guide.md +++ b/doc/developer-guide.md @@ -27,20 +27,20 @@ For merging a pull request to branch `main` workflow `ci-slow.yml` needs to be r `pytest-plugins` is a multi-project repository. Each of the plugins can be released independently. Releasing a single plugin includes -* Publish to pypi -* Create a release on GitHub +* Publishing to pypi +* Creating a release on GitHub -This requires to have a dedicated Git-tag for each release of each of the plugins. The convention is to use the name of the plugin as prefix followed by a dash character and the version of the plugin, e.g. `pytest-saas-0.1.0`. +This requires a dedicated Git-tag for each release of each plugin. The convention is to use the name of the plugin as a prefix followed by a dash character and the version of the plugin, e.g. `pytest-saas-0.1.0`. -In order to create release for one of the plugins +In order to create a release for one of the plugins 1. Open the GitHub repository in your browser -2. On top select tab "Actions" +2. On top select the tab "Actions" 3. On the left hand side select action "Continous Delivery (Release)" 4. On the right hand click button "Run workflow" 5. Select banch "main" 6. Select the project, e.g. "pytest-saas" 7. Enter the version number, e.g. `0.2.0` -8. Click button "Run workflow" +8. Click the button "Run workflow" The workflow will then * Checkout the project