builder/Taskfile.yml
Adam Štrauch 49ec1fa31a
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Build and push / build (push) Has been cancelled
Updated task, gitea workflow
2023-09-19 13:11:21 +02:00

26 lines
324 B
YAML

# https://taskfile.dev
version: '3'
vars:
REGISTRY: harbor.rosti.cz
REPO: library/builder
VERSION: 38-1
tasks:
default:
deps:
- build
build:
cmds:
- docker build -t {{ .REGISTRY }}/{{ .REPO }}:{{ .VERSION }} .
push:
cmds:
- docker push {{ .REGISTRY }}/{{ .REPO }}:{{ .VERSION }}