build-and-deploy-web #22
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: build-and-deploy-web | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build images | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
- name: Restore cached npm dependencies | |
id: cache-npm-deps | |
uses: actions/cache/restore@v4 | |
with: | |
path: | | |
node_modules | |
~/.cache/Cypress # needed for the Cypress binary | |
key: npm-dependencies-${{ hashFiles('package.json') }} | |
- name: Install dependencies | |
run: pnpm install | |
if: steps.cache-npm-deps.outputs.cache-hit != 'true' | |
- name: Cache npm dependencies | |
uses: actions/cache/save@v4 | |
with: | |
path: | | |
node_modules | |
~/.cache/Cypress # needed for the Cypress binary | |
key: npm-dependencies-${{ hashFiles('package.json') }} | |
# - name: Pull existing base image | |
# run: docker pull registry.digitalocean.com/linkerry/base:latest || echo "No existing image to pull" | |
- name: Build base image | |
run: npm run docker-base-linux | |
- name: Install doctl | |
uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- name: Log in to DO Container Registry | |
# 30min | |
run: doctl registry login --expiry-seconds 1800 | |
- name: Push image to DO Container Registry | |
run: docker push registry.digitalocean.com/linkerry/base:latest | |
- name: Build image for web | |
env: | |
NEXT_TELEMETRY_DISABLED: true | |
NEXT_PUBLIC_API_HOST: https://api.linkerry.com | |
run: docker build -t linkerry/web --build-arg NEXT_PUBLIC_API_HOST=$NEXT_PUBLIC_API_HOST -f ./apps/web/Dockerfile . --platform=linux/amd64 | |
- name: Tag web image | |
run: docker tag linkerry/web registry.digitalocean.com/linkerry/web:latest | |
- name: Push image to DO Container Registry | |
run: docker push registry.digitalocean.com/linkerry/web:latest | |
deploy: | |
runs-on: ubuntu-latest | |
name: Deploy web | |
needs: ['build'] | |
steps: | |
- name: Connect to VPS and refresh docker compose | |
uses: appleboy/ssh-action@v1.0.3 | |
with: | |
host: ${{ secrets.VPS_IP }} | |
username: root | |
key: ${{ secrets.SSH_PASSPHRASE_PRIVATE_KEY }} | |
passphrase: ${{ secrets.SSH_PASSPHRASE }} | |
port: 22 | |
script: | | |
cd linkerry.com/ | |
docker compose pull | |
docker compose up -d --no-deps --build web | |
docker image prune -f | |
- name: Install doctl | |
uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- name: Log in to DO Container Registry | |
# 30min | |
run: doctl registry login --expiry-seconds 1800 | |
- name: Clear DO container registry | |
run: doctl registry garbage-collection start --force linkerry |