Skip to content

Commit

Permalink
fix: Use upstream yamler version again and disable multidoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsvante committed Mar 19, 2024
1 parent 575e514 commit 936c371
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,24 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
clean: false

- name: Parse base kustomization.yaml
uses: jacobsvante/yamler@v1
uses: juliojimenez/yamler@v1.0.8
id: kustomization_base
if: hashFiles(${{ inputs.kustomization-base-dir }}/kustomization.yaml) != ''
with:
yaml-file: ${{ inputs.kustomization-base-dir }}/kustomization.yaml
multidoc: false

- name: Parse overlay kustomization.yaml
uses: jacobsvante/yamler@v1
uses: juliojimenez/yamler@v1.0.8
id: kustomization_overlay
with:
yaml-file: ${{ inputs.kustomization-dir }}/kustomization.yaml
multidoc: false

- name: Print steps (including output from yamler)
shell: bash
Expand Down

0 comments on commit 936c371

Please sign in to comment.