cv-site/.gitea/workflows/develop-deploy.yml
Gianmarco Pettinato 5c3d3651d6
All checks were successful
Build Site Develop / Build-Site (push) Successful in 2m40s
testing ci
2023-11-24 20:01:10 +01:00

26 lines
602 B
YAML

name: Build Site Develop
on:
push:
branches:
- develop
jobs:
Build-Site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- run: npm install
- run: npm run build
- name: Publish
uses: nogsantos/scp-deploy@master
with:
src: ./build/*
host: ${{ secrets.SSH_HOST }}
remote: ${{ variables.SSH_DIR }}
port: 69
user: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}