Monitorix/.github/actions/apt-get/install/action.yml

19 lines
447 B
YAML

---
inputs:
packages:
description: List of package(s) to install
required: true
runs:
using: composite
steps:
- name: Update package information
run: apt-get --yes update
shell: bash --noprofile --norc -euxo pipefail {0}
- name: Install package(s)
env:
DEBIAN_FRONTEND: noninteractive
run: apt-get --yes install ${{ inputs.packages }}
shell: bash --noprofile --norc -euxo pipefail {0}