Merge branch 'master' of https://codefirst.iut.uca.fr/git/lucie.bedouret/blazorCourse
continuous-integration/drone/push Build is passing Details

master
Lilian BRETON 2 years ago
commit 0f7d5a2930

@ -3,17 +3,26 @@ type: docker
name: BlazorProject name: BlazorProject
steps: steps:
- name: build
image: mcr.microsoft.com/dotnet/sdk:6.0
commands:
- cd myBlazorApp/
- dotnet restore myBlazorApp.sln
- dotnet build myBlazorApp.sln -c Release --no-restore
- name: generate-documentation - name: generate-documentation
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-docdeployer image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-docdeployer
failure: ignore failure: ignore
volumes: volumes:
- name: docs - name: docs
path: /docs path: /docs
commands: commands:
- /entrypoint.sh - /entrypoint.sh
when: when:
branch: branch:
- master - master
depends_on: [build]
volumes: volumes:

Loading…
Cancel
Save