Skip to content

Setup cuelang in your GitHub Actions workflow

License

Notifications You must be signed in to change notification settings

sajari/setup-cue

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Setup CUE

This GitHub Action downloads and installs cue so that it can be used as part of your workflow.

Inputs

version

Exact version of cue to install (cannot be a range or pattern). Must be a released version.

github-token

GitHub Token to use when downloading the release from GitHub.

Outputs

bin

Path to the cue binary, but will also be made available in $GITHUB_PATH.

Example usage

permissions:
  contents: read
steps:
- uses: sajari/setup-cue@v1
  with:
    version: 0.4.0
    github-token: ${{ secrets.GITHUB_TOKEN }}
- run: cue version