added payments with 3dSecure stripe, subscription activation, search #8
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: Build and 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' | |
- 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: Clean up target directory on server | |
uses: appleboy/ssh-action@master | |
with: | |
host: 145.220.74.148 | |
username: ubuntu | |
password: ${{ secrets.DEPLSSH_PASSWORD }} | |
port: 22 | |
script: | | |
find /var/www/fe -mindepth 1 -delete | |
- name: Copy build to server | |
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" |