diff --git a/.woodpecker.yml b/.woodpecker.yml index a00d865..0f18096 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,8 +1,6 @@ -clone: - git: - disable: true +skip_clone: true -pipeline: +steps: clone-manual: image: woodpeckerci/plugin-git settings: @@ -14,6 +12,8 @@ pipeline: image: mcr.microsoft.com/dotnet/sdk:8.0 commands: - dotnet restore --no-cache --force + depends_on: + - clone-manual build: image: mcr.microsoft.com/dotnet/sdk:8.0 @@ -43,6 +43,8 @@ pipeline: path: include: - "**/*DataModel.csproj" + depends_on: + - test # opcjonalnie, dodaj jeśli chcesz zależności publish-api: image: mcr.microsoft.com/dotnet/sdk:8.0 @@ -58,4 +60,6 @@ pipeline: event: push path: include: - - "**/*API.csproj" \ No newline at end of file + - "**/*API.csproj" + depends_on: + - test # opcjonalnie \ No newline at end of file