2.0.3
Release Docker Image / build-and-push (release) Failing after 12s
Release NuGet Packages / pack-and-push (release) Successful in 1m44s
Release (Orchestrated) / build-and-push-docker (release) Has been cancelled
Release (Orchestrated) / build-and-push-nuget (release) Has been cancelled

This commit is contained in:
2026-05-20 17:31:16 +03:30
parent 98c57d5f30
commit 808ed11e53
2 changed files with 22 additions and 4 deletions
+9 -1
View File
@@ -25,7 +25,10 @@ jobs:
- name: Checkout
shell: bash
run: |
set -euo pipefail
git clone --depth 1 https://git.sabp.ir/sufi-chain/dev-ops-test.git .
echo "=== Workspace contents ==="
ls -la
- name: Restore selected projects
shell: bash
@@ -49,8 +52,13 @@ jobs:
set -euo pipefail
mkdir -p "$PACKAGE_OUTPUT"
version="${RELEASE_TAG:-$REF_NAME}"
if [ -n "${RELEASE_TAG:-}" ]; then
version="$RELEASE_TAG"
else
version="0.0.0-dev.$(date +%Y%m%d%H%M%S)"
fi
version="${version#v}"
echo "=== Packing version: $version ==="
for project in $PACKAGE_PROJECTS; do
dotnet pack "$project" \