We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
name: Publish Website to CPanel on: push: branches: - main jobs: FTP-Deploy-Action: name: FTP-Deploy-Action runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 2 - name: Build assets run: npm install && npm run build
- name: Install PHP and Composer uses: shivammathur/setup-php@v2 with: php-version: '8.2' # Adjust to match the PHP version used by your Laravel project tools: 'composer' - name: Install PHP dependencies run: composer install --no-dev --optimize-autoloader - name: FTP-Deploy-Action uses: SamKirkland/[email protected]
with: server: ${{ secrets.SERVER }} username: ${{ secrets.USERNAME }} password: ${{ secrets.PASSWORD }} exclude: ".git*, node_modules/, vendor/, *.env, storage/"
this is my error and my host is cpanel
The text was updated successfully, but these errors were encountered:
No branches or pull requests
name: Publish Website to CPanel
on:
push:
branches:
- main
jobs:
FTP-Deploy-Action:
name: FTP-Deploy-Action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Build assets
run: npm install && npm run build
with:
server: ${{ secrets.SERVER }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
exclude: ".git*, node_modules/, vendor/, *.env, storage/"
this is my error and my host is cpanel
The text was updated successfully, but these errors were encountered: