https://github.com/outpost-os/action-install-pkg
Install packages on various operating system
https://github.com/outpost-os/action-install-pkg
actions install-script
Last synced: 14 days ago
JSON representation
Install packages on various operating system
- Host: GitHub
- URL: https://github.com/outpost-os/action-install-pkg
- Owner: outpost-os
- Created: 2024-07-30T13:33:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-30T13:37:13.000Z (almost 2 years ago)
- Last Synced: 2025-01-13T10:14:01.112Z (over 1 year ago)
- Topics: actions, install-script
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multi-platform package installer
## Intro
This action aim to abstract various distro (including OS-X) packagers through a
unified interface, in order to install packages.
As a very same software may be packaged with different names on different distros,
this action support fallback methodology so that it success while any of the
possible names of a package is fully installed
## Usage
Separating possible names for a very same package is done using `|`
Separating different packages is done using `,`
Here is a typical usage:
```
- name: install curl and dts packages
uses: embedded-devops/action-install-pkg@v2.0
with:
packages: 'dtc|device-tree-compiler,curl'
```