Skip to content

blacksails/setup-rig

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Github Action for setting up rig CLI

Rig is an application platform for Kubernetes. Rig has a concept of Capsules which is a self-contained deployable unit of your application. This action installs the rig CLI which you can the use to deploy docker images.

The action handles download, install and caching of the rig binary.

Usage

Put the action in a step and optionally set the version if you want something specific rather than latest.

jobs:
  deploy:
    env:
      RIG_CLIENT_ID: ${{ vars.RIG_CLIENT_ID }}
      RIG_CLIENT_SECRET: ${{ secrets.RIG_CLIENT_SECRET }}
    steps:
      - uses: rigdev/setup-rig@v1
        with:
          version: 1.7.1
      - run: |
          rig capsule deploy -B ...

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 93.6%
  • JavaScript 6.4%