Skip to content

Commit f5d290e

Browse files
authored
docs: fix and freshen README (#52)
1 parent fdf2f5c commit f5d290e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Setup and start DDEV action
77

8-
This **GitHub action** starts [DDEV](https://github.com/drud/ddev/) with your project's configuration from the directory `.ddev`.
8+
This **GitHub action** starts [DDEV](https://github.com/ddev/ddev/) with your project's configuration from the directory `.ddev`.
99

1010
The idea is to reuse the same environment that you are maintaining for development anyways for automated acceptance testing, thus saving on maintaining a separate CI-configuration.
1111

@@ -18,7 +18,7 @@ on: [push, pull_request]
1818

1919
jobs:
2020
test:
21-
runs-on: ubuntu-22.04 # tested on: 20.04/22.04
21+
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v1
2424
- name: Setup DDEV
@@ -27,8 +27,8 @@ jobs:
2727
# example: composer install
2828
- run: ddev composer install
2929

30-
# example: fill database
31-
- run: ddev mysql < data/db.sql
30+
# example: populate database
31+
- run: ddev import-db --file=data/db.sql.gz
3232

3333
# ... and so on. For example:
3434
- run: ddev exec bin/myAcceptanceTests.sh
@@ -84,7 +84,7 @@ default: `latest`
8484
```yaml
8585
- uses: ddev/github-action-setup-ddev@v1
8686
with:
87-
version: 1.22.4
87+
version: 1.24.7
8888
```
8989

9090
### installScriptUrl
@@ -112,7 +112,7 @@ Example with custom script source:
112112
uses: ddev/github-action-setup-ddev@v1
113113
with:
114114
installScriptUrl: "https://my-company.com/scripts/custom_ddev_install.sh"
115-
version: "v1.22.4"
115+
version: "v1.24.7"
116116
```
117117

118118
## Common recipes

0 commit comments

Comments
 (0)