mirror of
https://github.com/danbulant/nekofetch
synced 2026-06-21 23:52:17 +00:00
27 lines
540 B
YAML
27 lines
540 B
YAML
# Build a deb artifact on commit
|
|
|
|
name: Build deb on commit
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Test
|
|
run: |
|
|
echo $RELEASE_VERSION
|
|
echo ${{ env.RELEASE_VERSION }}
|
|
- 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'
|