This GitHub Action sets up the Agentuity CLI in your GitHub Actions workflow.
name: Example Workflow
on: [push]
jobs:
example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Agentuity CLI
uses: agentuity/setup-agentuity-action@v1
with:
api_key: ${{ secrets.AGENTUITY_API_KEY }}
- name: Use Agentuity CLI
run: agentuity version
This action:
- Downloads the latest version of the Agentuity CLI for Linux x86_64
- Adds it to the PATH
- Makes it available for subsequent steps in your workflow