adjust #55
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 to production | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
- name: Cache Next.js build files | |
uses: actions/cache@v4 | |
with: | |
path: apps/home/.next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-nextjs- | |
- name: Cache Astro build files | |
uses: actions/cache@v4 | |
with: | |
path: | | |
apps/next-auth/node_modules/.astro | |
apps/next-introdutorio/node_modules/.astro | |
apps/ts-no-react/node_modules/.astro | |
key: ${{ runner.os }}-astro-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-astro- | |
- run: pnpm install | |
- name: Build Projects | |
run: pnpm -r run build | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts | |
path: | | |
apps/home/dist/ | |
apps/next-auth/dist/ | |
apps/next-introdutorio/dist/ | |
apps/ts-no-react/dist/ | |
# Add more apps as needed | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
matrix: | |
app: | |
- name: 'home' | |
path: './home/dist/' | |
remote_path: '/var/www/guias/home/' | |
- name: 'next-auth' | |
path: './next-auth/dist/' | |
remote_path: '/var/www/guias/next-auth/' | |
- name: 'next-introdutorio' | |
path: './next-introdutorio/dist/' | |
remote_path: '/var/www/guias/next-introdutorio/' | |
- name: 'ts-no-react' | |
path: './ts-no-react/dist/' | |
remote_path: '/var/www/guias/ts-no-react/' | |
# Add more apps as needed | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-artifacts | |
path: . | |
- name: List All Files after downloading artifacts (excluding node_modules) | |
run: find . -type d -name node_modules -prune -o -type f -print | |
- name: Deploy with rsync | |
uses: burnett01/rsync-deployments@5.2 | |
with: | |
switches: -avzr --quiet --delete | |
path: ${{ matrix.app.path }} | |
remote_path: ${{ matrix.app.remote_path }} | |
remote_host: ${{ secrets.HOST }} | |
remote_user: ${{ secrets.USERNAME }} | |
remote_key: ${{ secrets.SSH_KEY }} |