This GitHub Action installs the Alpacon CLI in your workflow environment.
- Official Docs: Alpacon CLI Guide
- Installs Alpacon CLI automatically in your workflow
- Skips installation if CLI is already present
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Alpacon CLI
uses: alpacax/[email protected]
- name: Use other Alpacon actions
uses: alpacax/[email protected]
with:
workspace-url: ${{ secrets.ALPACON_WORKSPACE_URL }}
api-token: ${{ secrets.ALPACON_API_TOKEN }}
# ... other inputsThis action requires no inputs.
- This action only installs the Alpacon CLI
- Use this as the first step before other Alpacon actions (cp, websh, common)
- Other Alpacon actions will handle authentication automatically
- Alpacon CLI Getting Started