15 lines
No EOL
381 B
YAML
15 lines
No EOL
381 B
YAML
jobs:
|
|
run-neofetch:
|
|
runs-on: self-hosted
|
|
container:
|
|
image: ubuntu:latest
|
|
|
|
steps:
|
|
- name: download neofetch
|
|
run: |
|
|
apt update && apt install -y curl bash
|
|
curl -Lo neofetch https://raw.githubusercontent.com/dylanaraps/neofetch/refs/heads/master/neofetch
|
|
chmod +x neofetch
|
|
|
|
- name: neofetch
|
|
run: ./neofetch |