We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c6894 commit 631c74fCopy full SHA for 631c74f
2 files changed
.github/workflows/aws_dev.yml
@@ -75,7 +75,7 @@ jobs:
75
name: Deploy
76
runs-on: ubuntu-24.04
77
environment: develop
78
- if: ${{ github.base_ref == 'develop' || github.event_name == 'push' }}
+ if: ${{ github.event_name == 'push' }}
79
needs:
80
- tests
81
steps:
tests/test_helper.php
@@ -12,6 +12,8 @@
12
set_include_path(get_include_path() . PATH_SEPARATOR . TEST_DIR);
13
require_once(PROJECT_ROOT . 'lib/Bootstrap.php');
14
15
+var_dump(getenv());
16
+
17
if (getenv('USE_LOCAL_DEVELOPMENT_ENV')) {
18
Bootstrap::start();
19
} elseif (getenv('TRAVIS') || getenv('GITHUB_ACTION')) {
0 commit comments