Continuous Delivery #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Delivery | |
on: | |
workflow_dispatch: | |
# push: | |
# branches: | |
# - main | |
jobs: | |
Continuous-Delivery: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure SSH | |
env: | |
SSH_HOST: ${{ secrets.DEPLOYMENT_HOST }} | |
SSH_USER: ${{ secrets.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: ${{ secrets.DEPLOYMENT_PATH }} | |
run: | | |
ssh staging "$SSH_PATH/stop-service.sh" | |
rsync -azh ./node_modules/ staging:$SSH_PATH/node_modules/ | |
rsync -azh ./dist/ staging:$SSH_PATH/dist/ | |
ssh staging "$SSH_PATH/start-service.sh" |