Skip to content

20230919 MG

20230919 MG #16

Workflow file for this run

on:
push:
branches:
- dev
name: Deploy
jobs:
deploy_job:
name: deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: 📂 Sync files
uses: wlixcc/SFTP-Deploy-Action@v1.2.4
with:
server: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
local_path: './*'
remote_path: '/home/httpd/unicity'
port: ${{ secrets.PORT }}
sftp_only: true