https://github.com/aetherpak/setup-cli
https://github.com/aetherpak/setup-cli
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aetherpak/setup-cli
- Owner: aetherpak
- License: mit
- Created: 2026-05-29T17:56:24.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-09T17:58:15.000Z (21 days ago)
- Last Synced: 2026-06-09T19:23:48.753Z (21 days ago)
- Language: Makefile
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# AetherPak Setup CLI GitHub Action
A GitHub Action to download and set up the AetherPak CLI (`aetherpak`) and install system-level dependencies.
> [!IMPORTANT]
> This action supports **Linux** (Ubuntu) runners only, for both **x86_64 / amd64** and **arm64** CPU architectures.
## Usage
Add the following step to your GitHub Actions workflow:
```yaml
- name: Set up AetherPak CLI
uses: aetherpak/setup-cli@v1
with:
version: 'latest' # Or a specific version like 'v0.2.0'
```
## Inputs
| Input | Description | Default | Required |
| --- | --- | --- | --- |
| `version` | Version of AetherPak CLI to install (e.g., `v0.2.0`, `latest`) | `latest` | No |
| `repo` | GitHub repository containing the AetherPak CLI releases | `aetherpak/cli` | No |
| `install-dependencies` | Whether to automatically install missing system dependencies (`flatpak`, `ostree`, `flatpak-builder`) via `apt-get` on Linux | `true` | No |