fix: refactor markdown renderer to solid state machine #9
This file contains hidden or 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 Production | |
| on: | |
| push: | |
| branches: | |
| - production-ready | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| env: | |
| NEXT_PUBLIC_API_URL: ${{ secrets.NEXT_PUBLIC_API_URL }} | |
| NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }} | |
| CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install root dependencies | |
| run: npm install | |
| - name: Install API dependencies | |
| working-directory: ./api | |
| run: npm install | |
| - name: Install Web dependencies | |
| working-directory: ./web | |
| run: npm install | |
| - name: Typecheck | |
| run: make typecheck | |
| - name: Build Docker containers | |
| run: docker compose build | |
| - name: Deploy to Debian VM | |
| uses: appleboy/ssh-action@v1.0.3 | |
| with: | |
| host: ${{ secrets.GCP_HOST }} | |
| username: ${{ secrets.GCP_USER }} | |
| key: ${{ secrets.GCP_SSH_KEY }} | |
| script: | | |
| cd ~/illustrates.dev-platform-v2 | |
| git checkout production-ready | |
| git pull origin production-ready | |
| docker-compose up -d --build |