mirror of
https://github.com/danbulant/nekofetch
synced 2026-06-18 22:01:03 +00:00
25 lines
486 B
YAML
25 lines
486 B
YAML
# Build a deb artifact on commit
|
|
|
|
name: Build deb on commit
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build .deb
|
|
uses: jiro4989/build-deb-action@v2
|
|
with:
|
|
package: nekofetch
|
|
package_root: debpkg
|
|
maintainer: propr and bbaovanc
|
|
version: ${{ github.ref }}
|
|
arch: 'amd64'
|
|
desc: 'neofetch with nekos'
|