Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Dec 00:15
· 29 commits to refs/heads/main since this release
faa6886
Get any info from atmos describe component @goruha (#17)

what

  • Remove restriction to settings section.

Why

  • To reuse this action for fetching component_info.component_path settings

Migrating from v0 to v1

Starting from v1 the action is no longer restricted to retrieving the component config from only the settings section..
If you want the same behavior in v1 as inv0, you should add the settings prefix to the value of the settings-path variable.

  - name: Get Atmos Setting for Secret ARN
    uses: cloudposse/github-action-atmos-get-setting@v1
    id: example
    with:
      component: foo
      stack: core-ue1-dev
      settings-path: settings.secrets-arn  

same behaviour as

  - name: Get Atmos Setting for Secret ARN
    uses: cloudposse/github-action-atmos-get-setting@v0
    id: example
    with:
      component: foo
      stack: core-ue1-dev
      settings-path: secrets-arn