Mostly passing pipelines, still a broken deploy...

This commit is contained in:
2023-05-05 08:19:29 -04:00
parent b3365607c5
commit 775dd60b56
3 changed files with 7 additions and 3 deletions

View File

@@ -58,6 +58,8 @@ steps:
- failure - failure
trigger: trigger:
branch:
- main
event: event:
- pull_request - pull_request
- push - push
@@ -73,7 +75,7 @@ workspace:
path: /drone/grow path: /drone/grow
steps: steps:
- name: Build Service - name: Build Package
image: node:latest image: node:latest
commands: commands:
- yarn install - yarn install
@@ -175,7 +177,9 @@ steps:
image: docker image: docker
privileged: true privileged: true
commands: commands:
- docker compose pull
- docker compose build --no-cache - docker compose build --no-cache
- docker compose down
- docker compose up --wait - docker compose up --wait
volumes: volumes:
- name: env - name: env

View File

@@ -22,7 +22,7 @@ services:
- ROUTE_PREFIX=${ROUTE_PREFIX} - ROUTE_PREFIX=${ROUTE_PREFIX}
- LOGIN_ROUTE=${LOGIN_ROUTE} - LOGIN_ROUTE=${LOGIN_ROUTE}
- RESET_ROUTE=${RESET_ROUTE} - RESET_ROUTE=${RESET_ROUTE}
- DB_HOST=${CONTAINER_PREFIX}-${SERVICE_NAME}_${DB_TYPE} - DB_HOST=${SERVICE_NAME}_${DB_TYPE}
- DB_USER=${DB_USER} - DB_USER=${DB_USER}
- DB_PASS=${DB_PASS} - DB_PASS=${DB_PASS}
- DB_NAME=${DB_NAME} - DB_NAME=${DB_NAME}

View File

@@ -1,6 +1,6 @@
{ {
"name": "@mifi/auth", "name": "@mifi/auth",
"version": "0.0.10", "version": "0.0.11",
"author": "mifi (Mike Fitzpatrick)", "author": "mifi (Mike Fitzpatrick)",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {