Align frontend API contracts and CI pipeline #15

Merged
avm merged 14 commits from feature/frontend-api-alignment-dev into dev 2026-03-23 14:12:22 +03:00
Showing only changes of commit 53242aae29 - Show all commits

View File

@@ -169,13 +169,13 @@ jobs:
if: success()
run: |
set -euo pipefail
WORKSPACE_ARCHIVE="/tmp/ci-test-workspace.tar.gz"
tar \
--exclude='.git' \
--exclude='ci-test-workspace.tar.gz' \
--exclude='.pytest_cache' \
--exclude='htmlcov' \
--exclude='__pycache__' \
-czf ci-test-workspace.tar.gz \
-czf "${WORKSPACE_ARCHIVE}" \
.
- name: Upload prepared test workspace
@@ -183,7 +183,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ci-test-workspace
path: ci-test-workspace.tar.gz
path: /tmp/ci-test-workspace.tar.gz
if-no-files-found: error
retention-days: 1