Skip to content

Laravel Rsync Deploy With Migration

Actions
Deploy Laravel developed project with Rsync
2.11
Latest
Star (2)

Tags

 (1)

Get more details at codescene.io.

Laravel Rsync Deploy

Deploy Laravel developed project with Rsync.

Environment Variables

SSH_PRIVATE_KEY = Remote hosts SSH private key

REMOTE_HOST = Remote hosts IP address or domain

REMOTE_HOST_PORT = SSH remote host port number. e.g.: 22

REMOTE_USER = SSH login username. e.g.: root

TARGET_DIRECTORY = The target directory or path where the data will be synced. e.g.: ~/httpdocs

Usage

Example usage to /.github/workflows/*.yml file

- name: Laravel Rsync Deploy
  uses: MJAISE/Laravel-Rsync-Deploy-Migrate@master
  env:
    SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
    ARGS: "--ignore-times --compress --verbose --exclude=.git --exclude=.github --exclude=node_modules --no-perms --no-owner --no-group --recursive"
    REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
    REMOTE_HOST_PORT: ${{ secrets.REMOTE_HOST_PORT }}
    REMOTE_USER: ${{ secrets.REMOTE_USER }}
    TARGET_DIRECTORY: ${{ secrets.TARGET_DIRECTORY }}

Example usage in github workflow

name: Laravel Rsync Deploy

on:
  push:
    branches:
      - master

jobs:
  laravel-rsync-deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: MilesChou/composer-action/7.3/install@master
      - run: |
          cp .env.example .env
          php artisan key:generate --ansi

      - name: Pull Docker image
        run: |
          docker pull "node:lts-slim"
          npm install && npm run production

      - name: Laravel Rsync Deploy
        uses: MJAISE/Laravel-Rsync-Deploy-Migrate@master
        env:
          SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
          ARGS: "--ignore-times --compress --verbose --exclude=.git --exclude=.github --exclude=node_modules --no-perms --no-owner --no-group --recursive"
          REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
          REMOTE_HOST_PORT: ${{ secrets.REMOTE_HOST_PORT }}
          REMOTE_USER: ${{ secrets.REMOTE_USER }}
          TARGET_DIRECTORY: ${{ secrets.TARGET_DIRECTORY }}

Laravel Rsync Deploy With Migration is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Deploy Laravel developed project with Rsync
2.11
Latest

Tags

 (1)

Laravel Rsync Deploy With Migration is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.