mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
b582eaa20e
Co-authored-by: Renovate Bot <bot@renovateapp.com>
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: Deploy Dev
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
deploy:
|
|
environment: dev
|
|
concurrency: deploy-dev
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Node and pnpm
|
|
uses: logto-io/actions-node-pnpm-run-steps@v1.1.0
|
|
|
|
- name: Build
|
|
run: pnpm -- lerna run build --stream
|
|
|
|
# See warning in https://pnpm.io/cli/prune
|
|
- name: Prune
|
|
run: rm -rf node_modules packages/*/node_modules && pnpm i
|
|
env:
|
|
NODE_ENV: production
|
|
|
|
- name: Setup env
|
|
working-directory: packages/core
|
|
run: echo "$DEV_CORE_ENV" >> .env
|
|
env:
|
|
DEV_CORE_ENV: ${{ secrets.DEV_CORE_ENV }}
|
|
|
|
- name: Install SSH key
|
|
uses: shimataro/ssh-key-action@v2
|
|
with:
|
|
key: ${{ secrets.DEV_SSH_KEY }}
|
|
known_hosts: ${{ secrets.DEV_SSH_KNOWN_HOSTS }}
|
|
config: ${{ secrets.DEV_SSH_CONFIG }}
|
|
|
|
- name: Rsync folder
|
|
run: rsync --filter='exclude .git' -r -a ./ $DEV_SERVER_IP:~/logto
|
|
env:
|
|
DEV_SERVER_IP: ${{ secrets.DEV_SERVER_IP }}
|
|
|
|
- name: Sleep for 5 seconds
|
|
run: sleep 5s
|
|
|
|
- name: Health check
|
|
run: curl $DEV_SERVER_URL/api/status -If
|
|
env:
|
|
DEV_SERVER_URL: ${{ secrets.DEV_SERVER_URL }}
|