Skip to content

Commit 2713e59

Browse files
committed
Use new PR
1 parent e98c3b7 commit 2713e59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
shell: bash
2020

2121
env:
22-
NIGHTLY_DDEV_PR_URL: "https://nightly.link/drud/ddev/actions/artifacts/146117649.zip"
22+
NIGHTLY_DDEV_PR_URL: "https://nightly.link/drud/ddev/actions/runs/1720215802/ddev-linux-amd64.zip"
2323

2424
jobs:
2525
tests:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A repository like this one is the way to get started. You can create a new repo
2424
3. Globally replace "addon-template" with the name of your add-on.
2525
4. Add the files that need to be added to a ddev project to the repository. For example, you might remove `docker-composeaddon-template.yaml` with the `docker-compose.*.yaml` for your recipe.
2626
5. Update the install.yaml to give the necessary instructions for installing the add-on.
27-
* The fundamental line is the `files` directive, a list of files to be copied from this repo into the project `.ddev` directory.
27+
* The fundamental line is the `project_files` directive, a list of files to be copied from this repo into the project `.ddev` directory.
2828
* You can optionally add files to the `global_files` directive as well, which will cause files to be placed in the global `.ddev` directory, `~/.ddev`.
2929
* Finally, `pre_install_commands` and `post_install_commands` are supported. These can use the host-side environment variables documented [in ddev docs](https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/#environment-variables-provided).
3030
6. Update `tests/test.bats` to provide a reasonable test for the repository. You can run it manually with `bats tests` and it will be run on push and nightly as well. Please make sure to attend to test failures when they happen. Others will be depending on you. `bats` is a simple testing framework that just uses `bash`. You can install it with `brew install bats-core` or [see other techniques](https://bats-core.readthedocs.io/en/stable/installation.html). See [bats tutorial](https://bats-core.readthedocs.io/en/stable/).

install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pre_install_actions:
88
# - "docker volume rm ddev-${DDEV_PROJECT}_solr 2>/dev/null || true"
99

1010
# list of files and directories listed that are copied into project .ddev directory
11-
files:
11+
project_files:
1212
- docker-compose.addon-template.yaml
1313
# - extra_files/
1414
# - somefile.sh

0 commit comments

Comments
 (0)