Warehouses #1

Merged
trent merged 159 commits from Warehouses into master 2026-01-10 20:24:17 +00:00
Showing only changes of commit f3977428ef - Show all commits

View File

@@ -1,11 +1,13 @@
clone:
# Wyłącz domyślne clone wykonywane przez Woodpecker
clone:
disable: true
steps:
# Główna pipeline wszystko co chcesz wykonać
pipeline:
clone-manual:
image: woodpeckerci/plugin-git
settings:
remote: http://gitea:3000/FA/FA_WEB.git # wewnętrzny URL, agent widzi gitea po nazwie serwisu!
remote: http://gitea:3000/FA/FA_WEB.git
branch: master
depth: 1
@@ -50,7 +52,7 @@
for proj in $(find . -name "*API.csproj"); do
proj_name=$(basename "$proj" .csproj)
echo "Publishing $proj"
dotnet publish "$$ proj" --no-build -c Release -o ./publish/ $${proj_name}
dotnet publish "$proj" --no-build -c Release -o ./publish/$proj_name
done
when:
branch: ${CI_REPO_DEFAULT_BRANCH}