-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:dibodev/website
- Loading branch information
Showing
2 changed files
with
65 additions
and
51 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 | ||
|