Skip to content

Latest commit

 

History

History
71 lines (53 loc) · 1.61 KB

README.adoc

File metadata and controls

71 lines (53 loc) · 1.61 KB

Envsubst GitHub Action

This action substitute the values of environment variables using envsubst. envsubst is a GNU gettext https://www.gnu.org/software/gettext/manual/html_node/envsubst-Invocation.html

Substitute envs in exactly one file

      - uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: Substitute env
        uses: fhgbaguidi/envsubst-action@v1.0.0
        with:
          input-file: 'deployment.yaml'
          output-file: 'new-deployment.yaml'
        env:
          IMAGE_NAME: 'my-custom-image:1.0.0'

Substitute envs in files using patterns for input files

      - uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: Substitute env
        uses: fhgbaguidi/envsubst-action@v1.0.0
        with:
          input-file-pattern: '*.yaml'
          output-file-suffix: '.subst'
        IMAGE_NAME: 'my-custom-image:1.0.0'

With this last configuration, your output filename will be: deployment.yaml.subst.

Warning
Only one of input-file and input-file-pattern can be use at the time.

Parameters

Name Description Default value

working-directory

The working directory of the action

.

input-file

Path to the input file. Needs output-file to be set if defined.

output-file

Path to the output file. Needs input-file to be set if defined.

input-file-pattern

Pattern of input files. Will be used with GNU find -name.

output-file-suffix

Suffix that will be added to filenames for output files when using input-file-pattern.

.subst