Skip to content

skynet-core/nfpm

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nfpm

build last commit last release

nfpm tool packaged for using as GitHub Action.

Inputs

config

Optional Nfpm config path. Default is nfpm.yaml

packager

Required Packager to use. rpm or deb

target

Optional Output package name. Default is generic name based on config

Example usage

- name: Create deb package
  uses: skynet-core/[email protected]
  id: deb-package
  with:
    config: "custom.yaml"
    packager: "deb"
- name: Create rpm package
  uses: skynet-core/[email protected]
  id: rpm-package
  with:
    config: "custom.yaml"
    packager: "rpm"