Skip to content

- removed new option, added objectId #29

- removed new option, added objectId

- removed new option, added objectId #29

Workflow file for this run

name: Continuous Delivery
on:
workflow_dispatch:
push:
branches:
- main
jobs:
Continuous-Delivery:
runs-on: ubuntu-latest
steps:
- name: Configure SSH
env:
SSH_HOST: ${{ vars.DEPLOYMENT_HOST }}
SSH_USER: ${{ vars.DEPLOYMENT_USER }}
SSH_KEY: ${{ secrets.DEPLOYMENT_KEY }}
run: |
mkdir -p ~/.ssh/
cat >>~/.ssh/config <<END
Host staging
HostName $SSH_HOST
User $SSH_USER
IdentityFile ~/.ssh/staging.key
StrictHostKeyChecking no
END
echo "$SSH_KEY" > ~/.ssh/staging.key
chmod 600 ~/.ssh/staging.key
- name: Check out
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Remove node_modules and install production dependencies
run: |
rm -rf node_modules
yarn install --frozen-lockfile --production
- name: Stop service, Copy node_modules and dist folders to target host, Start service
env:
SSH_PATH: ${{ vars.DEPLOYMENT_BACKEND_PATH }}
run: |
ssh staging "$SSH_PATH/stop-service.sh"
rsync -azh --delete ./node_modules/ staging:$SSH_PATH/node_modules/
rsync -azh --delete ./dist/ staging:$SSH_PATH/dist/
ssh staging "$SSH_PATH/start-service.sh"