fix: no longer use personal address on homepage #6
Workflow file for this run
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: Deploy Frontend | |
on: | |
push: | |
tags: ['monitool-frontend**'] | |
jobs: | |
publish_frontend: | |
name: Publish frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@master | |
with: | |
node-version: 14 | |
- run: cd frontend && npm ci && npm run build && cd - | |
- uses: burnett01/rsync-deployments@22f8d1ffe807551ba75eba6a450c3d577690249f | |
with: | |
switches: -avzr --delete | |
path: frontend/dist/ | |
remote_path: ~/monitool-deployment/data/nginx/ | |
remote_host: monitool.org | |
remote_user: eloims | |
remote_key: ${{ secrets.SSH_PRIVATE_KEY }} |