GitHub Action for installing linuxdeploy with optional plugins.
- uses: pcolby/install-linuxdeploy@v1
The target architecture to install linuxdeploy for. This can be any architecture that linuxdeploy releases binaries
for. Defaults to match the architecture of the current workflow runner (typically x86_64
).
The target directory to install linuxdeploy to. Defaults to ${RUNNER_TEMP}/linuxdeploy
.
Whether or not to install known apt
dependencies. Defaults to true
.
Space-separated list of optional linuxdeploy plugins to install. Any plugins directly listed in the
Awesome linuxdeploy! listing should be supported, such as appimage
and qt
.
Each plugin may be suffixed with a version, like qt@v1.2.3
, to specify which version of that plugin to install. Note,
however, for plugins with actual releases (such as appimage
and qt
), the version is a GitHub release tag, but for
unreleased plugins (such as gtk
and gstreamer
) the version is a ref name or commit hash. If no version suffix is
provided, released plugins default to match the version
option, while unreleased plugins defualt to their
default branch (ie master
).
Whether or not to update the $PATH
environment variable to include the installation dir
. Defaults to true
.
The linuxdeploy version to install, as well as the default version for any plugins
entries that don't specify a
version.
Important
Currently this defaults to continuous
, as linuxdeploy has no official stable release yet. But at some point
this will likely default to the most recent stable linuxdeploy version that has been tested with this action.
- name: Install linuxdeploy
uses: pcolby/install-linuxdeploy@v1
with:
arch: x86_64
dir: ${{ runner.temp }}/linuxdeploy
install-deps: true
plugins: appimage gtk@master qt
set-env: true
version: continuous