Skip to content

package upgrade complete and version change 1.2.0 and readme file upd… #75

package upgrade complete and version change 1.2.0 and readme file upd…

package upgrade complete and version change 1.2.0 and readme file upd… #75

Workflow file for this run

name: Node - SSH deploy
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [main]
pull_request:
branches: [main]
jobs:
SFTP-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v2-beta
with:
node-version: '16'
- name: 🔨 Build Project
run: |
yarn
yarn build
- name: 📂 Deploy to Server
uses: easingthemes/[email protected]
env:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
# ARGS: "-rltgoDzvO --delete"
SOURCE: 'build/'
REMOTE_HOST: 192.34.62.123
REMOTE_USER: mantis
TARGET: public_html/free
EXCLUDE: '/dist/, /node_modules/'