Run any Alpacon CLI command in your Alpacon workspace using this GitHub Action.
- Official Docs: Alpacon CLI Guide
- Execute any
alpaconcommand with full flexibility - Handles authentication and workspace connection automatically
This action requires the Alpacon CLI to be installed in your workflow. Use the Alpacon Setup Action first:
- name: Setup Alpacon CLI
uses: alpacax/[email protected]- name: Run Alpacon Command
uses: alpacax/[email protected]
with:
workspace-url: ${{ secrets.ALPACON_WORKSPACE_URL }}
api-token: ${{ secrets.ALPACON_API_TOKEN }}
command: "server ls"| Name | Description | Required |
|---|---|---|
| workspace-url | Alpacon workspace URL. | Yes |
| api-token | Alpacon API token for authentication. | Yes |
| command | Alpacon command to execute. | Yes |