Skip to content

Commit

Permalink
Add step to always enable opcache
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayesh committed Aug 6, 2024
1 parent b1033b0 commit 450dfc4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,13 @@ runs:
sudo chmod 777 /etc/php.d
cd ../
- name: Enable opcache
shell: bash
run: |
echo zend_extension=opcache.so >> /etc/php.d/opcache.ini
echo opcache.enable=1 >> /etc/php.d/opcache.ini
echo opcache.enable_cli=1 >> /etc/php.d/opcache.ini
- name: Cleanup
shell: bash
run: |
Expand Down

0 comments on commit 450dfc4

Please sign in to comment.