https://github.com/bpicode/github-action-fpm
Github action to build packages using fpm
https://github.com/bpicode/github-action-fpm
actions fpm github-actions
Last synced: 5 months ago
JSON representation
Github action to build packages using fpm
- Host: GitHub
- URL: https://github.com/bpicode/github-action-fpm
- Owner: bpicode
- License: mit
- Created: 2019-12-15T11:15:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T12:12:58.000Z (almost 2 years ago)
- Last Synced: 2025-01-18T00:02:24.453Z (over 1 year ago)
- Topics: actions, fpm, github-actions
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 8
- Watchers: 1
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-action-fpm
Github action to build packages for multiple platforms using [fpm](https://github.com/jordansissel/fpm).
## Example
```
name: Example workflow yml
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Package
uses: bpicode/github-action-fpm@master
with:
fpm_args: './build'
fpm_opts: '--debug -n mypackage -t deb -s dir'
```
## Inputs and Outputs
See [action.yml](action.yml).
## Feedback, Suggestions, Contributions, Known Limitations
Feel free to file an issue, open a pull request, etc.