diff options
author | Louie S <louie@example.com> | 2024-07-10 16:03:34 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-07-10 16:03:34 -0400 |
commit | 8c1261cda51472df197c9bebfeec0e395a49d0dc (patch) | |
tree | 3003c3b6f5b6fce84512a0ac86bc4aa00b1f3129 /actions/README.md | |
parent | 2705958dc6de68a487597e29d4b9b99ccc6724a0 (diff) |
Create README for actions
Diffstat (limited to 'actions/README.md')
-rw-r--r-- | actions/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/actions/README.md b/actions/README.md new file mode 100644 index 0000000..08a1ae0 --- /dev/null +++ b/actions/README.md @@ -0,0 +1,17 @@ +### Actions + +The action targets are designed to automate testing and package building using containerization (via podman). Before running any actions, ensure that `make dist` has been run in the project root. + +``` +Usage: make TARGET [OPTIONS] + +targets: + actions_build_deb build a deb package + +options: + CONTAINER_NAME=... specify a container name + DEBUILD_ARGS =... call debuild with additional arguments + IMAGE_NAME =... build container from a specific image (must also set IMAGE_VERSION) + IMAGE_VERSION =... build container from a specific image version (must also set IMAGE_NAME) + SAVE_CONTAINER=<yes/no> if set to yes, do not remove the podman container after finishing (default is no) +``` |