22 lines
558 B
YAML
22 lines
558 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
commands:
|
|
- dotnet build --configuration Release Eazfuscator-Launcher/Eazfuscator-Launcher.csproj
|
|
- dotnet build --configuration Release VisualStudioMock/VisualStudioMock.csproj
|
|
|
|
- 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/docker-wine-dotnet
|
|
tags:
|
|
- latest
|
|
- ${DRONE_TAG:-latest} |