Skip to content

Provide common parameters via .env file

License

Notifications You must be signed in to change notification settings

marcobaldo/dotenv-action

 
 

Repository files navigation

javscript-action status

dotenv action

It reads the .env file from the root of this repo and provides environment variables to build steps.

Inputs

path

Override the path to the .env file. Default is .env in the repository root.

Outputs

generic

Whatever is present in the .env file will be converted into an output variable.

E.g. you have the following .env:

VERSION=1.0
AUTHOR=Mickey Mouse

Then you will have outputs:

{
    version: "1.0"
    author: "Mickey Mouse"
}

Example usage

id: dotenv
uses: ./.github/actions/dotenv-action

Then later you can refer to the alpine version like this ${{ steps.dotenv.outputs.version }}

About

Provide common parameters via .env file

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%