23 lines
709 B
YAML
23 lines
709 B
YAML
---
|
|
kind: pipeline
|
|
name: publish docker image
|
|
steps:
|
|
- name: download hometown code
|
|
image: alpine/curl:8.1.2
|
|
commands:
|
|
- curl -L -o hometown.tar.gz https://github.com/hometown-fork/hometown/archive/refs/tags/v4.2.17+hometown-1.1.2.tar.gz
|
|
- "tar -zxvf hometown.tar.gz"
|
|
- "rm hometown.tar.gz"
|
|
- "mv hometown-* hometown"
|
|
- name: build and publish
|
|
image: plugins/docker
|
|
settings:
|
|
dockerfile: hometown/Dockerfile
|
|
context: hometown
|
|
username: 3wordchant
|
|
password:
|
|
from_secret: git_coopcloud_tech_token_3wc
|
|
repo: git.coopcloud.tech/coop-cloud-chaos-patchs/hometown
|
|
tags: v4.2.17-hometown-1.1.2
|
|
registry: git.coopcloud.tech
|