diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ad00959..35333fd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,12 @@ jobs: runs-on: ubuntu-latest steps: + - name: Setup PHP without any shared extensions except mbstring + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + extensions: none, mbstring + - name: 🚚 Get latest code uses: actions/checkout@v4 @@ -20,4 +26,4 @@ jobs: username: ${{ secrets.FTP_USERNAME }} password: ${{ secrets.FTP_PASSWORD }} # local-dir: 'public' # Change this to the directory containing your Laravel app - server-dir: '/public_html/' # Change this to the directory on your server where you want to deploy + server-dir: '/public_html/' # Change this to the directory on your server where you want to deploy \ No newline at end of file