Files
CDN-APP-INSIDER/.drone.yml
Dinawo a9f2cdc3e2
All checks were successful
continuous-integration/drone/push Build is passing
Update Docker repository and secrets
2024-03-28 21:07:19 +01:00

25 lines
515 B
YAML

kind: pipeline
name: default
steps:
- name: build-node
image: node:latest
environment:
USERNAME:
from_secret: git_username
PASSWORD:
from_secret: git_password
commands:
- npm install
- node -v
- name: build-and-push-docker-image
image: plugins/docker
settings:
repo: dinawo/cdn-app-insider
tags: latest
dockerfile: Dockerfile
username:
from_secret: docker_username
password:
from_secret: docker_password