Skip to content

Commit

Permalink
Merge pull request #2159 from ergebnis/feature/list
Browse files Browse the repository at this point in the history
Enhancement: List environment variables
  • Loading branch information
localheinz committed Feb 7, 2024
2 parents 65d553f + ad23263 commit cf508af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/integrate.yaml
Expand Up @@ -251,6 +251,9 @@ jobs:
- name: "Dump environment variables"
run: "composer dump-env ${{ env.APP_ENV }} --ansi"

- name: "List environment variables"
run: "bin/console debug:dotenv --ansi"

- name: "Warm up cache"
run: "bin/console cache:warmup --ansi"

Expand Down Expand Up @@ -421,6 +424,9 @@ jobs:
- name: "Dump environment variables"
run: "composer dump-env ${{ env.APP_ENV }} --ansi"

- name: "List environment variables"
run: "bin/console debug:dotenv --ansi"

- name: "Warm up cache"
run: "bin/console cache:warmup --ansi"

Expand Down Expand Up @@ -498,6 +504,9 @@ jobs:
- name: "Dump environment variables"
run: "composer dump-env ${{ env.APP_ENV }} --ansi"

- name: "List environment variables"
run: "bin/console debug:dotenv --ansi"

- name: "Warm up cache"
run: "bin/console cache:warmup --ansi"

Expand Down
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -36,6 +36,7 @@ doctrine: vendor environment ## Runs doctrine commands to set up a local test da
.PHONY: environment
environment: vendor ## Dumps environment variables
composer dump-env ${APP_ENV}
bin/console debug:dotenv

.PHONY: help
help: ## Displays this list of targets with descriptions
Expand Down

0 comments on commit cf508af

Please sign in to comment.