Test CI
Some checks failed
Build / build-backend (push) Successful in 3s
Build / build-web (push) Successful in 12s
Build / release (push) Failing after 13s

This commit is contained in:
2026-04-22 11:40:28 +02:00
parent 0c673ab5f1
commit 6ea0479059

View File

@@ -44,7 +44,7 @@ jobs:
zip -r ../quibot-web.zip . zip -r ../quibot-web.zip .
- name: Upload Web artifact - name: Upload Web artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: quibot-web name: quibot-web
path: quibot-web/quibot-web.zip path: quibot-web/quibot-web.zip
@@ -69,7 +69,7 @@ jobs:
zip -r backend.zip . zip -r backend.zip .
- name: Upload Backend artifact - name: Upload Backend artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v3
with: with:
name: backend name: backend
path: backend/backend.zip path: backend/backend.zip
@@ -81,13 +81,13 @@ jobs:
needs: [build-web, build-backend] needs: [build-web, build-backend]
steps: steps:
- name: Download Web Artifact - name: Download Web Artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: quibot-web name: quibot-web
path: dist path: dist
- name: Download Backend Artifact - name: Download Backend Artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v3
with: with:
name: backend name: backend
path: dist path: dist