Files
stream-cinema/.drone.yml
Roman Vanicek caefd2f255
Some checks failed
continuous-integration/drone Build is failing
Build docker image
2024-11-10 23:12:30 +01:00

22 lines
488 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: mcr.microsoft.com/dotnet/sdk:8.0
commands:
- dotnet restore StreamCinema.sln
- 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}