-
Notifications
You must be signed in to change notification settings - Fork 20
37 lines (31 loc) · 1.05 KB
/
deploy-react-vfx.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
name: Deploy to amagi.dev/react-vfx-docs
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Pushes to another repository
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.REACT_VFX_DEPLOY_KEY }}
with:
source-directory: "packages/docs-react-vfx/dist"
destination-github-username: "fand"
destination-repository-name: "react-vfx-docs"
user-email: mail@amagi.dev
target-branch: main