Skip to content

Deployment to Cpanel.yml #1

Deployment to Cpanel.yml

Deployment to Cpanel.yml #1

Workflow file for this run

name: CI/CD with Next.js
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build the Next.js app
run: npm run build
- name: Deploy to cPanel
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.DEPLOY_KEY }}
publish_dir: ./out