Skip to content

Warning

You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?

Create .env file

Actions
GitHub Action to create a .env file with GitHub Secrets
v1.0
Star (431)

Create Envfile Github Action

Name: SpicyPizza/create-envfile@v1

Github Action to create a .env file with Github Secrets

Usage

The action looks for environment variables that start with INPUT_ENVKEY_ and creates an envfile with them. To add a key to the envfile, add a key/pair to the with: section. It must begin with envkey_.

name: Create envfile

on: [push]

jobs:

  create-envfile:
 
    runs-on: ubuntu-18.04
 
    steps:
    - name: Make envfile
      uses: SpicyPizza/create-envfile@v1
      with:
        envkey_DEBUG: false
        envkey_SOME_API_KEY: "123456abcdef"
        envkey_SECRET_KEY: ${{ secrets.SECRET_KEY }}
        some_other_variable: foobar
        file_name: .env

In this example, there are 4 keys:

envkey_DEBUG, envkey_SOME_API_KEY - String values

envkey_SECRET_KEY - A secret stored in the repository's Github Secrets

some_other_variable - Won't be used because it doesn't start with envkey_

file_name - Optional. Set the name of the output envfile. Defaults to .env

Create .env file is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

GitHub Action to create a .env file with GitHub Secrets
v1.0

Create .env file is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.