Skip to content

Commit

Permalink
Merge branch 'main' of github.com:dibodev/website
Browse files Browse the repository at this point in the history
  • Loading branch information
Leoglme committed Feb 18, 2024
2 parents b0bafe3 + 90b58a7 commit 1b9e538
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 51 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/deploy-o2switch.yml

This file was deleted.

65 changes: 65 additions & 0 deletions .github/workflows/deploy-ovh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: πŸš€ Build and Deploy Nuxt.js 3 App to ovh vps
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build:
name: πŸ—οΈ Build
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout repository
uses: actions/checkout@v3

- name: βš™οΈ Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18

- name: πŸ“¦ Install dependencies
run: npm ci

- name: πŸ› οΈ Build App
run: npm run build

- name: πŸ—‘οΈ Remove node_modules from .output/server
run: rm -rf .output/server/node_modules

- name: πŸ“ Modify package.json
run: |
mv .output/server/package.json .output/package.json
jq '{name: .name, version: .version, private: .private, dependencies: .bundledDependencies}' .output/package.json > .output/temp.json
mv .output/temp.json .output/package.json
- name: πŸ“ Create server.js
run: echo "import('./server/index.mjs');" > .output/server.js

- name: πŸ“€ Deploy to VPS
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
source: ".output/"
target: "/var/www/dibodev.com/html"

- name: πŸš€ Install dependencies and restart Server with PM2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
port: ${{ secrets.SSH_PORT }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /var/www/dibodev.com/html/.output
npm install
pm2 restart dibodev.com || pm2 start server.js --name dibodev.com

0 comments on commit 1b9e538

Please sign in to comment.