You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
envsubst-action
1.0.0
This action allows you to substitute environment variables in a file.
template.json
{
"version": "${VERSION}",
"instance": "${INSTANCE}"
}
.github/workflows/pipeline.yaml
- uses: danielr1996/[email protected]
with:
input: template.json
output: deployment.json
env:
VERSION: 1.2.3
INSTANCE: staging
deployment.json
{
"version": "1.2.3",
"instance": "staging"
}