https://github.com/defguard/fpm-action
GitHub action to build packages using fpm
https://github.com/defguard/fpm-action
Last synced: 4 months ago
JSON representation
GitHub action to build packages using fpm
- Host: GitHub
- URL: https://github.com/defguard/fpm-action
- Owner: DefGuard
- License: apache-2.0
- Created: 2024-08-14T08:13:28.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-14T11:57:45.000Z (11 months ago)
- Last Synced: 2025-01-14T04:12:07.960Z (5 months ago)
- Language: Ruby
- Size: 255 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fpm-action
GitHub action to build packages using [fpm](https://github.com/jordansissel/fpm).
FPM is a patched version from pull (#2064)(https://github.com/jordansissel/fpm/pull/2064) to fix FreeBSD packaging.
Based on [github-action-fpm](https://github.com/bpicode/github-action-fpm).## Example
```
name: Example workflow ymlon: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Package
uses: defGuard/fpm-action@main
with:
fpm_args: './build'
fpm_opts: '--debug -n mypackage -t deb -s dir'
```## Inputs and Outputs
See [action.yml](action.yml).