Compare commits
3 Commits
e706ef1924
...
af943c1e84
| Author | SHA1 | Date | |
|---|---|---|---|
|
af943c1e84
|
|||
|
50af0b3065
|
|||
|
50e691cf05
|
75
.drone.yml
75
.drone.yml
@@ -84,41 +84,41 @@ workspace:
|
|||||||
path: /drone/auth
|
path: /drone/auth
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build Package
|
# - name: Build Package
|
||||||
image: node:20-bullseye-slim
|
# image: node:20-bullseye-slim
|
||||||
environment:
|
# environment:
|
||||||
YARN_VERSION: 3.5.0
|
# YARN_VERSION: 3.5.0
|
||||||
commands:
|
# commands:
|
||||||
- yarn set version stable
|
# - yarn set version stable
|
||||||
- yarn install
|
# - yarn install
|
||||||
- yarn build:production
|
# - yarn build:production
|
||||||
volumes:
|
# volumes:
|
||||||
- name: yarnrc
|
# - name: yarnrc
|
||||||
path: /drone/auth/.yarnrc.yml
|
# path: /drone/auth/.yarnrc.yml
|
||||||
- name: Publish NPM
|
# - name: Publish NPM
|
||||||
image: node:20-bullseye-slim
|
# image: node:20-bullseye-slim
|
||||||
commands:
|
# commands:
|
||||||
- yarn npm publish
|
# - yarn npm publish
|
||||||
volumes:
|
# volumes:
|
||||||
- name: npmrc
|
# - name: npmrc
|
||||||
path: /drone/auth/.npmrc
|
# path: /drone/auth/.npmrc
|
||||||
- name: yarnrc
|
# - name: yarnrc
|
||||||
path: /drone/auth/.yarnrc.yml
|
# path: /drone/auth/.yarnrc.yml
|
||||||
- name: Report NPM Publish Status
|
# - name: Report NPM Publish Status
|
||||||
image: plugins/webhook
|
# image: plugins/webhook
|
||||||
settings:
|
# settings:
|
||||||
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
# urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
||||||
content_type: application/json
|
# content_type: application/json
|
||||||
template: |
|
# template: |
|
||||||
{
|
# {
|
||||||
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
"text": "[{{ repo.name }} - New npm package release {{tag}} from # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
# "text": "[{{ repo.name }} - New npm package release {{tag}} from # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
"username":"DroneBot"
|
# "username":"DroneBot"
|
||||||
}
|
# }
|
||||||
when:
|
# when:
|
||||||
status:
|
# status:
|
||||||
- success
|
# - success
|
||||||
- failure
|
# - failure
|
||||||
- name: Publish Image
|
- name: Publish Image
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
@@ -170,8 +170,11 @@ depends_on:
|
|||||||
- Test Pipeline
|
- Test Pipeline
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
|
branch:
|
||||||
|
- develop
|
||||||
event:
|
event:
|
||||||
- tag
|
# - tag
|
||||||
|
- push
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
ARG ENV=production
|
ARG ENV=production
|
||||||
ARG PORT=9001
|
ARG MONGO_ENTRY_FILE
|
||||||
|
ARG MONGO_VERSION=latest
|
||||||
ARG NPM_TOKEN
|
ARG NPM_TOKEN
|
||||||
|
ARG PORT=9001
|
||||||
ARG YARN_VERSION=3.5.0
|
ARG YARN_VERSION=3.5.0
|
||||||
ARG MONGO_ENTRY_FILE=${MONGO_VERSION:-latest}
|
|
||||||
ARG MONGO_VERSION=${MONGO_VERSION:-latest}
|
|
||||||
|
|
||||||
## mongo build stage
|
## mongo build stage
|
||||||
FROM mongo:${MONGO_VERSION} AS database
|
FROM mongo:${MONGO_VERSION} AS database
|
||||||
ENV NODE_ENV=${ENV}
|
ENV NODE_ENV=${ENV}
|
||||||
ARG MONGO_ENTRY_FILE=${MONGO_ENTRY_FILE}
|
ARG MONGO_ENTRY_FILE=${MONGO_ENTRY_FILE:-latest}
|
||||||
ENV MONGO_VERSION=${MONGO_VERSION}
|
ENV MONGO_VERSION=${MONGO_VERSION}
|
||||||
|
RUN echo ${MONGO_ENTRY_FILE} ${MONGO_VERSION} ${NODE_ENV}
|
||||||
COPY docker-entrypoint-initdb.d/mongo-init-${MONGO_ENTRY_FILE}.sh ./docker-entrypoint-initdb.d/mongo-init.sh
|
COPY docker-entrypoint-initdb.d/mongo-init-${MONGO_ENTRY_FILE}.sh ./docker-entrypoint-initdb.d/mongo-init.sh
|
||||||
|
|
||||||
## stage one, build the service
|
## stage one, build the service
|
||||||
|
|||||||
Reference in New Issue
Block a user