btop/.github/workflows/continuous-build.yml

23 lines
394 B
YAML
Raw Normal View History

2021-10-05 21:42:36 +13:00
name: Continuous Build
on:
push
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: update system
run: |
sudo apt update && sudo apt upgrade -y
- name: Build
run: make -j `nproc`
- uses: actions/upload-artifact@v2
with:
name: Upload built binary
path: 'bin/btop'