https://github.com/accelbyte/gha-install-extend-helper-cli
Downloads and installs the specified version of the Extend Helper CLI executable into your workflow environment.
https://github.com/accelbyte/gha-install-extend-helper-cli
Last synced: 6 months ago
JSON representation
Downloads and installs the specified version of the Extend Helper CLI executable into your workflow environment.
- Host: GitHub
- URL: https://github.com/accelbyte/gha-install-extend-helper-cli
- Owner: AccelByte
- License: mit
- Created: 2025-08-05T02:10:53.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-08-05T02:22:27.000Z (8 months ago)
- Last Synced: 2025-09-08T20:44:16.148Z (7 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🚀 Install Extend Helper CLI
A GitHub Action to install the [AccelByte Extend Helper CLI](https://github.com/AccelByte/extend-helper-cli).
Downloads and installs the specified version of the CLI executable into your workflow environment.
## 📦 Usage
```yaml
jobs:
install-cli:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Extend Helper CLI
uses: AccelByte/gha-install-extend-helper-cli@v1
with:
version: v1.0.0 # Optional: leave empty to get latest
os: linux # Optional: linux, darwin, or windows
architecture: amd64 # Optional: amd64, arm64, etc.
- name: Use Extend Helper CLI
run: |
extend-helper-cli --help
```