-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1.05 KB
/
build.yml
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
name: Build & Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache npm repository
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-${{ hashFiles('package*.json') }}
restore-keys: |
${{ runner.os }}-
- name: Installing packages
run: npm ci
- name: Build site
run: env NODE_ENV=production npm run build
- name: rsync dist
uses: burnett01/[email protected]
with:
switches: -avzr --delete
path: .vitepress/dist/
remote_path: ${{ secrets.POST_STAGING_PATH }}
remote_host: ${{ secrets.POST_STAGING_HOST }}
remote_user: ${{ secrets.POST_USER }}
remote_key: ${{ secrets.POST_KEY }}
# only run one of these at a time
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true