Update index.html #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Frontend | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- 'Frontend/openvidstreamer-fe/**' | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- 'Frontend/openvidstreamer-fe/**' | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' # Adjust this to match your project's Node.js version | |
- name: Install dependencies | |
run: npm install | |
working-directory: ./Frontend/openvidstreamer-fe | |
- name: Install Vite globally | |
run: npm install -g vite | |
- name: Build project using Vite | |
run: vite build | |
working-directory: ./Frontend/openvidstreamer-fe | |
- name: Deploy over SSH | |
uses: appleboy/scp-action@master | |
with: | |
host: 145.220.74.148 | |
username: ubuntu | |
password: ${{ secrets.DEPLSSH_PASSWORD }} | |
port: 22 | |
source: "./Frontend/openvidstreamer-fe/dist/*" | |
target: "/var/www/fe" | |
rm: true # Removes all files in the target directory before copying |