Skip to content

Add social authentication support with Provider model and controller;… #38

Add social authentication support with Provider model and controller;…

Add social authentication support with Provider model and controller;… #38

Workflow file for this run

on:
push:
branches:
- main
name: 🚀 Deploy website on Push
jobs:
web-deploy:
name: 🎉 Deploy on The server
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: Install PHP and Composer
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: 'composer'
- name: Composer install
run: composer install
- name: 📦 Setup Node
uses: actions/setup-node@v2
with:
node-version: '20'
- name: NPM install
run: npm install && npm run build
- name: 📂 Sync files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.SERVER }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
protocol: ftp
port: 21,
exclude: |
**/.git*
**/.git*/**
**/node_modules/**
**/vendor/**