This action enables you to fetch Doppler secrets for use in your GitHub Actions.
NOTE: If the GitHub Actions for your repository only require secrets from a single config, we recommend using our Doppler GitHub application instead, as it syncs secrets directly to your repository.
The action can be configured in two ways:
- Service Token (recommended)
- Service Account Token with Project and Config
A Doppler Service Token provides read-only access to a single config and is recommended due to its limited access scope.
Create a GitHub repository secret named DOPPLER_TOKEN
or if using multiple Service Tokens (e.g. for a Monorepo), you can prefix the secret name using with application name, e.g. AUTH_API_DOPPLER_TOKEN
.
Then supply the Service Token using the doppler-token
input:
- uses: dopplerhq/secrets-fetch-action@v1.2.0
id: doppler
with:
doppler-token: ${{ secrets.DOPPLER_TOKEN }}
A Doppler Service Account Token allows for a configurable set of permissions to services in your workplace. The doppler-project
and doppler-config
inputs must be provided when using a Service Account Token:
- uses: dopplerhq/secrets-fetch-action@v1.2.0
id: doppler
with:
doppler-token: ${{ secrets.DOPPLER_TOKEN }}
doppler-project: auth-api
doppler-config: ci-cd
Secrets can be accessed in two ways:
- Default: Using
outputs
- Optional: Using environment variables
Secrets can be accessed individually using outputs
by providing an id
for the Doppler action step:
name: Doppler secrets from outputs
on: [push]
jobs:
secrets-fetch:
runs-on: ubuntu-latest
steps:
- uses: dopplerhq/secrets-fetch-action@v1.2.0
id: doppler
with:
doppler-token: ${{ secrets.DOPPLER_TOKEN }}
- run: echo "DOPPLER_PROJECT is ${{ steps.doppler.outputs.DOPPLER_PROJECT }} (Doppler meta environment variables are unmasked)"
- run: echo "API_KEY is ${{ steps.doppler.outputs.API_KEY }} (secret masked output)"
This option injects secrets as environment variables for use in subsequent steps by setting the inject-env-vars
input to true
.
NOTE: Be careful using this option as environment variables are available to any subsequent process in your GitHub Action steps.
name: Doppler secrets from environment variables
on: [push]
jobs:
secrets-fetch:
runs-on: ubuntu-latest
steps:
- uses: dopplerhq/secrets-fetch-action@v1.2.0
id: doppler
with:
doppler-token: ${{ secrets.DOPPLER_TOKEN }}
inject-env-vars: true
- run: printenv
All secret values are masked with the exception of the Doppler meta variables:
DOPPLER_PROJECT
DOPPLER_ENVIRONMENT
DOPPLER_CONFIG
and any secrets assigned the unmasked
secret visibility.
Export the NODE_ENV
and DOPPLER_TOKEN
environment variables, then run npm test
.