-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (60 loc) · 1.9 KB
/
deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: CI and Deployment
on: [push]
jobs:
# build:
# runs-on: ubuntu-latest
# env:
# NEXT_TELEMETRY_DISABLED: 1
# steps:
# - uses: actions/checkout@v2
# - name: Set up Node.js
# uses: actions/setup-node@v2
# with:
# node-version: "20"
# - name: Install Dependencies
# run: npm install
# - name: Generate date and write to file
# run: echo "const buildDate = '`date +%Y%m%d%H%M`'; export default buildDate;" > buildDate.ts
# - name: Build
# run: npm run buildfordeploy
# - name: Prepare files
# run: |
# cp -r public .next/standalone
# cp -r ./.next/static .next/standalone/.next
# - name: Archive files
# uses: actions/upload-artifact@v2
# with:
# name: app
# path: .next/standalone
# deploy:
# needs: build
# runs-on: self-hosted
# env:
# NEXT_TELEMETRY_DISABLED: 1
# steps:
# - uses: actions/checkout@v2
# - name: Download files
# uses: actions/download-artifact@v2
# with:
# name: app
# path: /home/zulmet/servers/belief/standalone
# - name: Copy .env
# run: cp /home/zulmet/servers/.env /home/zulmet/servers/belief/standalone/.env
# - name: Update server.js
# run: sed -i 's/3000/3002/g' /home/zulmet/servers/belief/standalone/server.js
# - name: Restart server
# run: |
# pm2 restart /home/zulmet/servers/belief/standalone/server.js --name belief
# pm2 save
run_example_job:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: executing remote ssh commands using ssh key
uses: appleboy/ssh-action@v1.0.2
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script: whoami