2 Commits

Author SHA1 Message Date
1a717cd83e Not likely....
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-04 21:49:37 -04:00
1e932d97c8 Probably not 2023-05-04 21:43:58 -04:00

View File

@@ -105,16 +105,6 @@ steps:
commands: commands:
- yarn install - yarn install
- yarn build - yarn build
- name: NPM Auth
image: robertstettner/drone-npm-auth
settings:
username:
from_secret: registry_username
password:
from_secret: registry_password
email: mike@fitz.guru
registry: https://git.mifi.dev
scope: mifi
- name: Publish NPM - name: Publish NPM
image: plugins/npm image: plugins/npm
failure: ignore failure: ignore
@@ -159,9 +149,9 @@ steps:
from_secret: gitea_token from_secret: gitea_token
volumes: volumes:
- name: dockersock - name: dockersock
Path: /var/run/docker.sock path: /var/run/docker.sock
- name: dockerconfig - name: dockerconfig
Path: /drone/grow/.docker/config.json path: /drone/grow/.docker/config.json
- name: Report Image Publish Status - name: Report Image Publish Status
image: plugins/webhook image: plugins/webhook
settings: settings:
@@ -181,13 +171,13 @@ steps:
volumes: volumes:
- name: yarnrc - name: yarnrc
host: host:
path: /Volume1/docker/.yarnrc.yml path: /Volume1/docker/.yarnrc.yml
- name: dockersock - name: dockersock
host: host:
path: /var/run/docker.sock path: /var/run/docker.sock
- name: dockerconfig - name: dockerconfig
host: host:
path: /volume1/docker/labs/grow-auth/dockerconfig.json path: /volume1/docker/labs/grow-auth/dockerconfig.json
# depends_on: # depends_on:
# - Build Pipeline # - Build Pipeline
@@ -212,6 +202,7 @@ workspace:
steps: steps:
- name: Deploy Container - name: Deploy Container
image: docker image: docker
privileged: true
commands: commands:
- docker compose build - docker compose build
- docker compose up --wait - docker compose up --wait
@@ -219,11 +210,12 @@ steps:
- name: env - name: env
path: /drone/grow/.env path: /drone/grow/.env
- name: dockersock - name: dockersock
Path: /var/run/docker.sock path: /var/run/docker.sock
- name: dockerconfig - name: dockerconfig
Path: /drone/grow/.docker/config.json path: /drone/grow/.docker/config.json
- name: Send Status Notifications - name: Send Status Notifications
image: plugins/webhook image: plugins/webhook
privileged: true
settings: settings:
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
content_type: application/json content_type: application/json
@@ -241,13 +233,13 @@ steps:
volumes: volumes:
- name: env - name: env
host: host:
path: /volume1/docker/labs/grow-auth/.env path: /volume1/docker/labs/grow-auth/.env
- name: dockersock - name: dockersock
host: host:
path: /var/run/docker.sock path: /var/run/docker.sock
- name: dockerconfig - name: dockerconfig
host: host:
path: /volume1/docker/labs/grow-auth/dockerconfig.json path: /volume1/docker/labs/grow-auth/dockerconfig.json
# depends_on: # depends_on:
# - Build Pipeline # - Build Pipeline