force build

This commit is contained in:
resonic-user 2025-06-26 12:10:41 +02:00
parent 61743567f4
commit dda83cda4b

View File

@ -227,6 +227,13 @@ jobs:
cd webapp && yarn install --frozen-lockfile && cd ..
npx cypress verify || echo "⚠️ Cypress not yet verified"
# force rebuild regardless of cache state
- name: ⚙️ Always rebuild backend & webapp
run: |
echo "🔧 Forcing backend & webapp build..."
cd backend && yarn build && cd ..
cd webapp && yarn build && cd ..
#build backend
- name: Build backend
run: cd backend && yarn build