Skip to content

Update checker.yml

Update checker.yml #9

Workflow file for this run

name: Plesk Installation Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-installation:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Plesk CLI
run: |
sudo apt update
sudo apt install -y curl expect
curl https://installer.plesk.com/plesk-installer | sudo bash
- name: Verify Plesk installation
run: plesk version
- name: Run installation script
run: |
echo "Running installation script..."
expect -c '
spawn php humhub-extension.php install
expect "Would you like to help Plesk make better products by sending information"
send "N\n"
expect eof
'