Skip to content

Build NVTOP Application #6

Build NVTOP Application

Build NVTOP Application #6

Workflow file for this run

name: Build NVTOP Application
on:
workflow_dispatch:
push:
tags:
- "*"
jobs:
build:
name: Build App
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Install libraries
run: |
sudo apt-get install libdrm-dev libsystemd-dev libudev-dev
sudo apt-get install libfuse2
- name: Install build tools
run: |
sudo apt-get install -y dh-make devscripts build-essential lintian
- name: Build
run: |
bash ${{ github.workspace }}/release.sh deb
- name: Upload workflow artifacts
uses: actions/upload-artifact@v4
with:
name: nvtop
path: |
${{ github.workspace }}/release/nvtop_*.deb
${{ github.workspace }}/release/nvtop-*.AppImage