3 Commits

Author SHA1 Message Date
f482750d08 this may break everything...
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-05 08:47:54 -04:00
7b77df0c4c v0.0.13 - fixed triggers perhaps...
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-05 08:32:17 -04:00
8ee5d627aa Resolving stupid errors
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-05 08:21:02 -04:00
3 changed files with 6 additions and 6 deletions

View File

@@ -63,7 +63,6 @@ trigger:
event:
- pull_request
- push
- tag
---
kind: pipeline
@@ -156,12 +155,13 @@ volumes:
path: /volume1/docker/grow/labs-auth/.npmrc
depends_on:
- Build Pipeline
- Test Pipeline
trigger:
branch:
- main
event:
- push
- tag
---
@@ -179,7 +179,7 @@ steps:
commands:
- docker compose pull
- docker compose build --no-cache
- docker compose down
- docker compose rm --stop .
- docker compose up --wait
volumes:
- name: env
@@ -217,10 +217,11 @@ volumes:
path: /volume1/docker/labs/grow-auth/.env
depends_on:
- Build Pipeline
- Test Pipeline
trigger:
branch:
- main
event:
- push
- tag

View File

@@ -23,5 +23,4 @@ WORKDIR /home/node/app
COPY package*.json ./
RUN yarn install --frozen-lockfile --production
COPY --from=0 /home/node/app/dist .
EXPOSE 80
CMD ["node","server/index.js"]

View File

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