This action sets up Vespa CLI as part of your GitHub Actions workflow.
name | required | type | default | description |
---|---|---|---|---|
version | yes | string | latest |
The version of Vespa CLI to install. |
Workflow:
---
name: CI
on:
push: ~
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vespa CLI
uses: vespa-engine/setup-vespa-cli-action@v1
- name: Do something with the vespa CLI
run: |
vespa auth login
...
vespa deploy