Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/andreygubarev/setup-direnv
- Owner: andreygubarev
- License: mit
- Created: 2024-03-27T18:37:01.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T16:38:24.000Z (about 2 months ago)
- Last Synced: 2024-10-10T22:15:01.680Z (about 1 month ago)
- Topics: actions, direnv, github-actions
- Language: TypeScript
- Homepage:
- Size: 1.41 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
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'
```