All checks were successful
continuous-integration/drone/push Build is passing
21 lines
448 B
YAML
21 lines
448 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: mcr.microsoft.com/dotnet/sdk:9.0
|
|
commands:
|
|
- dotnet publish -c Release -o out
|
|
|
|
- name: docker
|
|
image: plugins/docker
|
|
settings:
|
|
registry: https://git.ivasoft.cz
|
|
username:
|
|
from_secret: repo_user
|
|
password:
|
|
from_secret: repo_pass
|
|
repo: git.ivasoft.cz/sw/stream-cinema
|
|
tags:
|
|
- latest
|
|
- ${DRONE_TAG:-latest} |