musps / action-deployer-php

Github action with Deployer PHP.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Action - Deployer PHP

Usage

musps/action-deployer-php@master

Example

- name: Deploy to prod server
  uses: musps/action-deployer-php@master
  with:
    args: deploy prod
   env:
    SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}

Definition

  • Set your ssh private key in your repository secrets.
  • Set the file and command as argument .
  • Current Deployer PHP version: 6.8.0

Demo workflows

  • Run the deployment on branch prefixed by releases/x.
name: Test action Deployer PHP

on:
  push:
    branches:
      - 'releases/*'

jobs:
  build:
    name: Deploy code to prod
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - name: Deploy
        uses: musps/action-deployer-php@master
        with:
          args: deploy prod
        env:
          SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}

About

About

Github action with Deployer PHP.


Languages

Language:Dockerfile 47.3%Language:PHP 30.6%Language:Shell 22.1%