action-debian-package/README.md

20 lines
550 B
Markdown
Raw Normal View History

2020-03-25 22:13:26 +00:00
# Build Debian package Github Action
2020-03-25 21:27:56 +00:00
2020-03-29 21:39:39 +00:00
An action that builds a Debian package from source in a Docker container.
2020-03-25 21:27:56 +00:00
2020-03-25 22:13:26 +00:00
## Usage
```yaml
- name: Build Debian package
uses: dawidd6/action-debian-package@v1
2020-03-25 22:13:26 +00:00
with:
2021-04-27 05:48:55 +00:00
# Optional, relative to workspace directory
source_directory: lolcat
# Optional, relative to workspace directory
artifacts_directory: output
# Optional, value from `debian/changelog` is used if not defined
os_distribution: bionic
2021-07-09 22:12:59 +00:00
# Optional, target architecture, defaults to amd64
cpu_architecture: arm64
2020-03-25 22:13:26 +00:00
```