Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andreygubarev/setup-direnv

This GitHub Action installs direnv, an environment switcher for the shell.
https://github.com/andreygubarev/setup-direnv

actions direnv github-actions

Last synced: 15 days ago
JSON representation

This GitHub Action installs direnv, an environment switcher for the shell.

Awesome Lists containing this project

README

        

# Direnv GitHub Action

This GitHub Action installs [direnv](https://direnv.net/), an environment
switcher for the shell. It makes it easy to manage project-specific environment
variables without cluttering your shell startup files.

## Usage

To use this action in your workflow, add the following step:

```yaml
- uses: andreygubarev/setup-direnv@v1
```

This action supports multiple platforms and architectures, which are
automatically detected based on the runner that the action is executed on.

## Inputs

### `version`

**Optional** The version of direnv to install. Default is `latest`.

## Outputs

This action does not have any outputs.

## Example usage

```yaml
uses: andreygubarev/setup-direnv@v1
with:
version: '2.34.0'
```