Skip to content

Commit a69e544

Browse files
authored
fix code highlighting
1 parent e7f3a52 commit a69e544

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup-py-project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ push:
2222
path: 'plugin.json'
2323
prop_path: 'Version'
2424
```
25-
5. The 'Install dependencies' section is where you will do most of your CI work. Notice it installs the requirements.txt and outputs it with the `-t` parameter to the `./lib` folder. This tells pip to dump all the installed modules to the local lib folder which you will zip up along with your project using the `zip -r <NAME-OF-YOUR-PLUGIN>.zip . -x '*.git*'`, where you replace this '<NAME-OF-YOUR-PLUGIN>' with the name of your plugin.
25+
5. The 'Install dependencies' section is where you will do most of your CI work. Notice it installs the requirements.txt and outputs it with the `-t` parameter to the `./lib` folder. This tells pip to dump all the installed modules to the local lib folder which you will zip up along with your project using the `zip -r <NAME-OF-YOUR-PLUGIN>.zip . -x '*.git*'`, where you replace this `<NAME-OF-YOUR-PLUGIN>` with the name of your plugin.
2626

2727
You can also add additional steps here to unpack/install any additional depedencies your plugin requires, for example compiling additional translation files like [this](https://github.com/deefrawley/Flow.Launcher.Plugin.Currency/blob/23770ee929af059b1b1b7f9b5f3327b692ac9587/.github/workflows/Publish%20Release.yml#L34)
2828
```yml
@@ -34,7 +34,7 @@ push:
3434
```
3535

3636
### 2. Publish as zip
37-
The final step to the workflow file is this publish section, which will publish the zip file you generated, upload to GitHub Releases page and tag with the version generated from the previous step from your plugin.json file. Remmember again to replace '<NAME-OF-YOUR-PLUGIN>' with the name of your plugin.
37+
The final step to the workflow file is this publish section, which will publish the zip file you generated, upload to GitHub Releases page and tag with the version generated from the previous step from your plugin.json file. Remmember again to replace `<NAME-OF-YOUR-PLUGIN>` with the name of your plugin.
3838
```yml
3939
- name: Publish
4040
if: success() && github.ref == 'refs/heads/main'

0 commit comments

Comments
 (0)