From b3a735d596ab4d2511943eb016d012062b3f60f7 Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Tue, 10 Mar 2026 10:05:47 -0700 Subject: [PATCH] Update CI Workflow --- .gitea/workflows/ci.yaml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index c732115..9608e88 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -125,7 +125,7 @@ jobs: shell: bash run: | /usr/bin/kicad-git-filters.py - kibot -c kibot/yaml/kibot_pre_update_xml.yaml -d . --log kibot_run_xml.log + kibot -vv -c kibot/yaml/kibot_pre_update_xml.yaml -d . --log kibot_run_xml.log - name: Run KiBot (Preprocessing) shell: bash @@ -193,23 +193,23 @@ jobs: branch: ${{ github.ref_name }} commit_message: '[bot]: Update Outputs' + - name: Upload XML Update Log + if: ${{ always() }} + uses: christopherhx/gitea-upload-artifact@v4 + with: + name: log_file_xml + path: kibot_run_xml.log + + - name: Upload Preprocessing Log + if: ${{ always() }} + uses: christopherhx/gitea-upload-artifact@v4 + with: + name: log_file_preprocess + path: kibot_run_preprocess.log + - name: Upload KiBot Log if: ${{ always() }} uses: christopherhx/gitea-upload-artifact@v4 with: name: log_file_kibot path: ${{ env.kibot_log }} - - - name: Upload Drawing Notes Log - if: ${{ always() && env.kibot_stage != 'DRAFT' }} - uses: christopherhx/gitea-upload-artifact@v4 - with: - name: log_file_notes - path: kibot_run_notes.log - - - name: Upload README Log - if: ${{ always() && env.kibot_stage == 'DRAFT' }} - uses: christopherhx/gitea-upload-artifact@v4 - with: - name: log_file_readme - path: kibot_run_readme.log