20 lines
469 B
YAML
20 lines
469 B
YAML
kind: pipeline
|
|
name: default
|
|
steps:
|
|
- name: build-container
|
|
image: plugins/docker
|
|
environment:
|
|
CONFIG_JSON:
|
|
from_secret: config_json
|
|
settings:
|
|
repo: git.saintnet.tech/stryan/saintnet_stickers
|
|
registry: git.saintnet.tech
|
|
password:
|
|
from_secret: build_pass
|
|
username:
|
|
from_secret: build_username
|
|
dockerfile: Containerfile
|
|
tags: latest
|
|
secrets_from_env:
|
|
- pack_config=CONFIG_JSON
|