Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: List environment variables #2159

Merged
merged 1 commit into from Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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