Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@
The Deployment Helper can be configured via a `.shopware-project.yml` file in the root of your project.
The following configuration options are available:

::::info
If you have multiple PHP versions locally or on your server, make sure to use `%php.bin%` instead of directly `php` in your custom scripts to use the same PHP version as the Deployment Helper.

Check warning on line 84 in guides/hosting/installation-updates/deployments/deployment-helper.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/hosting/installation-updates/deployments/deployment-helper.md#L84

File types are normally capitalized. (FILE_EXTENSIONS_CASE[1]) Suggestions: `PHP` URL: https://languagetool.org/insights/post/spelling-capital-letters/ Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1 Category: CASING
Raw output
guides/hosting/installation-updates/deployments/deployment-helper.md:84:111: File types are normally capitalized. (FILE_EXTENSIONS_CASE[1])
 Suggestions: `PHP`
 URL: https://languagetool.org/insights/post/spelling-capital-letters/ 
 Rule: https://community.languagetool.org/rule/show/FILE_EXTENSIONS_CASE?lang=en-US&subId=1
 Category: CASING
::::

```yaml
deployment:
hooks:
Expand Down Expand Up @@ -127,6 +131,8 @@

one-time-tasks:
- id: foo
# Runs as last step in deployment. Other options is: first (to run before anything else)

Check warning on line 134 in guides/hosting/installation-updates/deployments/deployment-helper.md

View workflow job for this annotation

GitHub Actions / LanguageTool

[LanguageTool] guides/hosting/installation-updates/deployments/deployment-helper.md#L134

It seems that the correct verb form here is “are”. (AGREEMENT_SENT_START_2[1]) Suggestions: `are` Rule: https://community.languagetool.org/rule/show/AGREEMENT_SENT_START_2?lang=en-US&subId=1 Category: GRAMMAR
Raw output
guides/hosting/installation-updates/deployments/deployment-helper.md:134:55: It seems that the correct verb form here is “are”. (AGREEMENT_SENT_START_2[1])
 Suggestions: `are`
 Rule: https://community.languagetool.org/rule/show/AGREEMENT_SENT_START_2?lang=en-US&subId=1
 Category: GRAMMAR
when: last # defaults to last
script: |
# runs one time in deployment, then never again
./bin/console --version
Expand Down