mirror of
https://github.com/danbulant/nekofetch
synced 2026-06-20 23:01:22 +00:00
Add deb-build workflow
This commit is contained in:
parent
31d5e7ab07
commit
77877605f7
2 changed files with 25 additions and 0 deletions
25
.github/workflows/deb-build.yml
vendored
Normal file
25
.github/workflows/deb-build.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# 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'
|
||||
Loading…
Reference in a new issue