mirror of
https://example.com
synced 2024-11-23 00:26:39 +09:00
16 lines
424 B
YAML
16 lines
424 B
YAML
|
pipeline:
|
||
|
publish-docker-latest:
|
||
|
image: plugins/kaniko
|
||
|
settings:
|
||
|
repo: thatonecalculator/firefish
|
||
|
tags: latest
|
||
|
dockerfile: Dockerfile
|
||
|
username:
|
||
|
# Secret 'docker_username' needs to be set in the CI settings
|
||
|
from_secret: docker_username
|
||
|
password:
|
||
|
# Secret 'docker_password' needs to be set in the CI settings
|
||
|
from_secret: docker_password
|
||
|
|
||
|
branches: main
|