Skip to content
View kaskis7070's full-sized avatar

Block or report kaskis7070

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Kaskis7070/README.md

name: Build and Publish Training Dashboard

on: push: branches: [ main ]

jobs: build_and_publish: runs-on: ubuntu-latest

steps:
- name: Checkout repository
  uses: actions/checkout@v4

- name: Setup Python
  uses: actions/setup-python@v4
  with:
    python-version: '3.10'

- name: Install dependencies
  run: |
    python -m pip install --upgrade pip
    pip install -r requirements.txt

- name: Run training dashboard generator
  run: |
    python src/generate_all_advanced.py

- name: Upload outputs as artifact
  uses: actions/upload-artifact@v4
  with:
    name: dashboard-outputs
    path: outputs_advanced/

- name: Deploy HTML Dashboard to GitHub Pages
  uses: peaceiris/actions-gh-pages@v6
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    publish_dir: ./outputs_advanced
    publish_branch: gh-pages

Pinned Loading

  1. chatbot chatbot Public

    Python 1

  2. gdp-dashboard gdp-dashboard Public

    Python 1

  3. Kaskis Kaskis Public

    1

  4. Kaskis7070 Kaskis7070 Public

    Kaskis

    HTML 2