Fix task name in turbo #355
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-ducksmanager | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "master" | |
jobs: | |
deploy-dm: | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- uses: oven-sh/setup-bun@v1 | |
- name: Check out repository | |
uses: actions/checkout@master | |
- name: Download web .env file | |
uses: nicklasfrahm/scp-action@main | |
with: | |
direction: download | |
host: ${{ secrets.PRODUCTION_SSH_HOST }} | |
fingerprint: ${{ secrets.PRODUCTION_SSH_FINGERPRINT }} | |
username: ${{ secrets.PRODUCTION_SSH_USER }} | |
key: ${{ secrets.PRODUCTION_SSH_KEY }} | |
source: /home/bperel/workspace/DucksManager2/apps/web/.env.prod.local | |
target: apps/web/.env | |
- name: Download api .env file | |
uses: nicklasfrahm/scp-action@main | |
with: | |
direction: download | |
host: ${{ secrets.PRODUCTION_SSH_HOST }} | |
fingerprint: ${{ secrets.PRODUCTION_SSH_FINGERPRINT }} | |
username: ${{ secrets.PRODUCTION_SSH_USER }} | |
key: ${{ secrets.PRODUCTION_SSH_KEY }} | |
source: /home/bperel/workspace/DucksManager2/packages/api/.env.prod.local | |
target: packages/api/.env | |
- name: Download prisma-schemas .env file | |
uses: nicklasfrahm/scp-action@main | |
with: | |
direction: download | |
host: ${{ secrets.PRODUCTION_SSH_HOST }} | |
fingerprint: ${{ secrets.PRODUCTION_SSH_FINGERPRINT }} | |
username: ${{ secrets.PRODUCTION_SSH_USER }} | |
key: ${{ secrets.PRODUCTION_SSH_KEY }} | |
source: /home/bperel/workspace/DucksManager2/packages/prisma-clients/.env.prod.local | |
target: packages/prisma-schemas/.env | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: bperel | |
password: ${{ secrets.DOCKER_REGISTRY_TOKEN_DM }} | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm -r install | |
- name: Build api bundle | |
run: pnpm build:api | |
- name: Build and push api | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: packages/api/Dockerfile | |
platforms: linux/x86_64 | |
push: true | |
cache-from: type=registry,ref=ghcr.io/bperel/ducksmanager-api:buildcache | |
cache-to: type=registry,ref=ghcr.io/bperel/ducksmanager-api:buildcache,mode=max | |
tags: | | |
ghcr.io/bperel/ducksmanager-api:websocket | |
- name: Build web | |
run: pnpm build:web | |
- name: Build and push web | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: apps/web/Dockerfile | |
platforms: linux/x86_64 | |
push: true | |
cache-from: type=registry,ref=ghcr.io/bperel/ducksmanager-web:buildcache | |
cache-to: type=registry,ref=ghcr.io/bperel/ducksmanager-web:buildcache,mode=max | |
tags: | | |
ghcr.io/bperel/ducksmanager-web:websocket | |
- name: Upload docker-compose.yml file | |
uses: nicklasfrahm/[email protected] | |
with: | |
direction: upload | |
host: ${{ secrets.PRODUCTION_SSH_HOST }} | |
fingerprint: ${{ secrets.PRODUCTION_SSH_FINGERPRINT }} | |
username: ${{ secrets.PRODUCTION_SSH_USER }} | |
key: ${{ secrets.PRODUCTION_SSH_KEY }} | |
source: apps/web/docker-compose.yml | |
target: /home/bperel/workspace/DucksManager2/docker-compose.yml | |
- name: Recreate containers | |
uses: appleboy/[email protected] | |
env: | |
DOCKER_REGISTRY_TOKEN: ${{ secrets.DOCKER_REGISTRY_TOKEN_DM }} | |
with: | |
host: ${{ secrets.PRODUCTION_SSH_HOST }} | |
username: ${{ secrets.PRODUCTION_SSH_USER }} | |
key: ${{ secrets.PRODUCTION_SSH_KEY }} | |
command_timeout: 2m | |
envs: DOCKER_REGISTRY_TOKEN_DM | |
script: | | |
cd workspace/DucksManager2 | |
echo `grep GITHUB_TOKEN .env | cut -d'=' -f2` | docker login ghcr.io -u bperel --password-stdin | |
docker compose pull && docker compose up -d --force-recreate web-websocket api-websocket sentry-relay |