diff --git a/.github/workflows/test-server.yml b/.github/workflows/test-server.yml index 161cd8b6..feaff4f4 100644 --- a/.github/workflows/test-server.yml +++ b/.github/workflows/test-server.yml @@ -102,7 +102,7 @@ jobs: run: npm run workers > worker.log 2>&1 & working-directory: ./apps/api id: start_workers - - name: Start index worker + - name: Start index worker > index-worker.log 2>&1 & run: npm run index-worker & working-directory: ./apps/api id: start_index_worker @@ -115,10 +115,11 @@ jobs: - name: Kill instances if: always() run: pkill -9 node - # - uses: actions/upload-artifact@v4 - # if: always() - # with: - # name: Logs - # path: | - # ./apps/api/api.log - # ./apps/api/worker.log \ No newline at end of file + - uses: actions/upload-artifact@v4 + if: always() + with: + name: Logs + path: | + ./apps/api/api.log + ./apps/api/worker.log + ./apps/api/index-worker.log \ No newline at end of file