File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 46
46
cache : ' yarn'
47
47
- run : yarn install --frozen-lockfile
48
48
- run : yarn nx build site --configuration=production --skip-nx-cache
49
+ - uses : garygrossgarten/github-action-scp@release
50
+ with :
51
+ local : ' ./dist/packages/site'
52
+ remote : ' /var/www/react-devui.com'
53
+ host : ${{ secrets.SSH_HOST }}
54
+ port : ${{ secrets.SSH_PORT }}
55
+ username : ${{ secrets.SSH_USER }}
56
+ password : ${{ secrets.SSH_PASSWORD }}
57
+ rmRemote : true
58
+ dotfiles : true
49
59
- run : cp ./dist/packages/site/index.html ./dist/packages/site/200.html
50
60
- uses : dswistowski/surge-sh-action@v1
51
61
with :
67
77
cache : ' yarn'
68
78
- run : yarn install --frozen-lockfile
69
79
- run : yarn nx build platform --configuration=production --skip-nx-cache
80
+ - uses : garygrossgarten/github-action-scp@release
81
+ with :
82
+ local : ' ./dist/packages/platform'
83
+ remote : ' /var/www/admin.react-devui.com'
84
+ host : ${{ secrets.SSH_HOST }}
85
+ port : ${{ secrets.SSH_PORT }}
86
+ username : ${{ secrets.SSH_USER }}
87
+ password : ${{ secrets.SSH_PASSWORD }}
88
+ rmRemote : true
89
+ dotfiles : true
70
90
- run : cp ./dist/packages/platform/index.html ./dist/packages/platform/200.html
71
91
- uses : dswistowski/surge-sh-action@v1
72
92
with :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export function AppFooter(props: React.HTMLAttributes<HTMLDivElement>): JSX.Elem
10
10
< footer { ...props } className = { getClassName ( props . className , 'app-footer' ) } >
11
11
< div className = "app-footer__col" >
12
12
< div className = "app-footer__col-title" > { t ( 'footer.Resources' ) } </ div >
13
- < a href = "https://rd-platform.surge.sh " target = "_blank" rel = "noreferrer" >
13
+ < a href = "https://admin.react-devui.com " target = "_blank" rel = "noreferrer" >
14
14
RD-Platform
15
15
</ a >
16
16
< a href = "https://devui.design" target = "_blank" rel = "noreferrer" >
You can’t perform that action at this time.
0 commit comments