2020-09-12 19:31:45 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: webpack
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
- npm run publish
|
|
|
|
|
|
|
|
- name: publish-container
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
purge: true
|
2020-10-26 10:19:28 +00:00
|
|
|
pull_impage: true
|
2020-09-12 19:31:45 +00:00
|
|
|
repo: arminfriedl/netclock
|
|
|
|
tags: latest
|