Skip to content

Update prod.yml

Update prod.yml #3

Workflow file for this run

name: Stage 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:
- stage*
pull_request:
types:
- closed
branches:
- stage*
jobs:
if_merged:
if: github.event.pull_request.merged == true
name: πŸŽ‰ Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20"
- name: πŸ”¨ Build Project
run: |
npm i
npm run build-stage
- name: πŸ“‚ Deploy to Server
uses: easingthemes/ssh-deploy@v4
env:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
# ARGS: "-rltgoDzvO --delete"
SOURCE: "dist/"
REMOTE_HOST: 192.34.62.123
REMOTE_USER: mantis
TARGET: public_html/vue/free/stage
EXCLUDE: "/node_modules/"