Skip to content

Commit

Permalink
Update PHP configuration and GitHub action paths
Browse files Browse the repository at this point in the history
The commit updates the path referenced in php-cli.sh script configuration to '/etc/php/current/cli/conf.d/50-app.ini'. In addition, it also adjusts file paths in the GitHub actions workflow, notably removing the leading './' before each path and including the php.yml workflow file itself.
  • Loading branch information
nbejansen committed Apr 30, 2024
1 parent 1cec9b7 commit 6704a2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
branches:
- '1.x'
paths:
- './src/php/**'
# - './.github/workflows/php.yml'
- 'src/php/**'
- '.github/workflows/php.yml'
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion src/php/runtime/entrypoint.d/php-cli.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

template php.ini.tmpl /etc/php/current/cli/conf.d/60-app.ini
template php.ini.tmpl /etc/php/current/cli/conf.d/50-app.ini

0 comments on commit 6704a2a

Please sign in to comment.