Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2d100fd
feat: update Vercel configuration to include routing for API and heal…
Jan 7, 2026
c5a366c
Add git assets, app ideas folders, dashboard updates, and python scripts
Jan 7, 2026
51e9e41
MAMMA
Cleanskiier27 Jan 28, 2026
cceac4f
latest update
Cleanskiier27 Jan 28, 2026
892e656
Add NSIS installer script and local installer bundle
Cleanskiier27 Jan 28, 2026
9c2cb24
Add device classification scaffolds (DeviceType, Task, Health), train…
Cleanskiier27 Jan 28, 2026
8e0eea9
Add model registry, installer backup script, and release pipeline wor…
Cleanskiier27 Jan 28, 2026
81753ac
Add Continuous Learning module and Feedback Simulator for exponential…
Cleanskiier27 Jan 28, 2026
6e688a4
Enable NetworkBuster Neural Network System: Main GUI Dashboard, Secur…
Cleanskiier27 Jan 28, 2026
8899119
Fix import issues: add create_default_pipeline import and update requ…
Cleanskiier27 Jan 28, 2026
9986be2
Add NetworkBuster Full Suite installers
Cleanskiier27 Jan 28, 2026
a0ca711
Add issue identification and PowerShell fix scripts for all problems
Cleanskiier27 Jan 28, 2026
ea2e95d
Add auto-generated fix scripts for C++ undefined types, GitHub Action…
Cleanskiier27 Jan 28, 2026
27eb7d9
Add DataCentral Synchronization Module and technical documentation
Jan 30, 2026
4c3ae16
Update all project files and add DataCentral Synchronization Module
Jan 30, 2026
7073a8e
Merge remote-tracking branch 'origin/DATACENTRAL' and add DataCentral…
Jan 30, 2026
9e26edc
Initial plan
Copilot Jan 31, 2026
eaa12f0
Fix AI Training Pipeline implementation with Azure SDK integration
Copilot Jan 31, 2026
d0ef0f1
Remove __pycache__ from tracking
Copilot Jan 31, 2026
ca96cf1
Address code review feedback - improve error handling
Copilot Jan 31, 2026
082b479
Fix Azure exception handling - use ResourceExistsError
Copilot Jan 31, 2026
807a9b6
Merge pull request #17 from NetworkBuster/copilot/fix-ai-training-pip…
Cleanskiier27 Jan 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
64 changes: 64 additions & 0 deletions .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Release Pipeline

on:
workflow_dispatch: {}
push:
tags:
- 'v*'
branches:
- DATACENTRAL

jobs:
build-and-release:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_distributor.txt || true
pip install scikit-learn joblib numpy || true

- name: Run lint/test (smoke)
run: |
python -m pip install pytest || true
# Run a lightweight smoke test: train device classifiers briefly
python train_device_classifiers.py --which health || true

- name: Build executable
run: |
python build_exe.py

- name: Backup installers
run: |
python backup_installers.py

- name: Create release when tag pushed
if: startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: ${{ github.ref_name }}
files: installers/*,dist/*
draft: false
prerelease: false

repair-job:
runs-on: ubuntu-latest
needs: build-and-release
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run automated repair checks
run: |
echo "Running repo consistency checks..."
# Placeholder for real repair tooling
echo "Repair checks complete"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ build/
*.log
.DS_Store
.vercel
__pycache__/
Loading
Loading