Skip to content

nebbia-fitness/action-deployer-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 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

About

Github action with Deployer PHP.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 47.3%
  • PHP 30.6%
  • Shell 22.1%