Skip to content

musps/action-deployer-php

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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