21 lines
467 B
YAML
21 lines
467 B
YAML
|
steps:
|
||
|
- name: submodules
|
||
|
image: alpine/git
|
||
|
commands:
|
||
|
- git submodule update --init --recursive
|
||
|
- name: build-container
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
repo: git.saintnet.tech/stryan/nunbot
|
||
|
registry: git.saintnet.tech
|
||
|
password:
|
||
|
from_secret: build_pass
|
||
|
username:
|
||
|
from_secret: build_username
|
||
|
dockerfile: Containerfile
|
||
|
tags: latest
|
||
|
layers: true
|
||
|
when:
|
||
|
- branch: master
|
||
|
event: push
|