Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ronenh committed Aug 28, 2024
1 parent 137e7ef commit ee5e18e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,20 @@ jobs:
- 'charts/discovery/**'
charts/scim:
- 'charts/scim/**'
-
name: Debug
run: |
echo join: ${{ join(fromJSON(steps.changes.outputs.changes)) }}
lint:
runs-on: ubuntu-latest
needs: diff
if: needs.diff.outputs.charts
if: fromJSON(needs.diff.outputs.charts)
steps:
- name: debug
run: |
echo raw: ${{ needs.diff.outputs.charts }}
echo json: ${{ toJSON(needs.diff.outputs.charts) }}
echo join: ${{ join(needs.diff.outputs.charts) }}
echo fromJSON: ${{ fromJSON(needs.diff.outputs.charts) }}
echo join: ${{ join(fromJSON(needs.diff.outputs.charts)) }}
-
name: Read Configuration
uses: hashicorp/vault-action@v3
Expand Down Expand Up @@ -78,7 +82,7 @@ jobs:
name: Lint ${{ matrix.chart.name }}
run: |
ct lint --config ct.yaml \
--charts '${{ join(needs.diff.outputs.charts) }}' \
--charts '${{ join(fromJSON(needs.diff.outputs.charts)) }}' \
--target-branch ${{ github.event.repository.default_branch }} \
--helm-repo-extra-args "aserto-helm=-u gh -p ${READ_WRITE_TOKEN}"
Expand Down

0 comments on commit ee5e18e

Please sign in to comment.