btop/.github/workflows/continuous-build.yml
2021-10-05 14:12:36 +05:30

22 lines
394 B
YAML

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'