htop AppImage #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: htop AppImage | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
schedule: | |
- cron: "0 16 1/14 * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build | |
run: | | |
sudo apt update | |
sudo apt install libsensors-dev libdrm-dev libudev-dev libncursesw5-dev \ | |
file libcap-dev ninja-build autotools-dev autoconf automake \ | |
build-essential meson desktop-file-utils zsync | |
chmod a+x ./*-appimage.sh && ./*-appimage.sh | |
mkdir dist | |
mv *.AppImage* dist/ | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: htop.AppImage | |
path: 'dist' | |
release: | |
needs: [build] | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: htop.AppImage | |
- name: release | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
title: Continuous build | |
automatic_release_tag: continuous | |
prerelease: false | |
draft: false | |
files: | | |
*.AppImage* | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |