diff --git a/.github/workflows/Auto_Debug_Build.yaml b/.github/workflows/Auto_Debug_Build.yaml index e64096b..99b97fd 100644 --- a/.github/workflows/Auto_Debug_Build.yaml +++ b/.github/workflows/Auto_Debug_Build.yaml @@ -46,6 +46,26 @@ jobs: run: | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --count --exit-zero --max-complexity=30 --max-line-length=40 --statistics + + Git-Subsystem-Manager: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Update Git Version + run: | + mkdir -p /tmp/artifacts + mkdir -p /tmp/artifacts/subsystem_manager + cp -r ./Subsystem-Manager/subsystem-manager-uv/* /tmp/artifacts/subsystem_manager + + - name: 'Upload Artifact' + uses: actions/upload-artifact@v4 + with: + name: subsystem-manager-github-latest + path: /tmp/artifacts/* + compression-level: 0 Test-Subsystem-Manager-Raw: strategy: