Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mohnoor94 committed Aug 27, 2024
1 parent d2281e5 commit 8c84af0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/selfserve-combine-templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,14 @@ jobs:
name: ${{ inputs.custom_templates_key }}
path: ${{ inputs.custom_templates_path }}

- name: List all files
run: find .

- name: Combine Templates
run: |
mkdir -p ${{ inputs.combined_templates_key }}
cp -r ${{ inputs.base_templates }}/* ${{ inputs.combined_templates_key }}
ls -la ${{ inputs.custom_templates_path }}
if [ -n "${{ inputs.custom_templates_path }}" ] && [ -d ${{ inputs.custom_templates_path }} ]; then
cp -r ${{ inputs.custom_templates_path }}/* ${{ inputs.combined_templates_key }}
fi
Expand Down

0 comments on commit 8c84af0

Please sign in to comment.