From fb27c5b1e422f0da544067820e875e33d6896bdb Mon Sep 17 00:00:00 2001 From: Nipuna Ransinghe Date: Tue, 15 Oct 2024 11:48:39 +0530 Subject: [PATCH] Fix template workflow to include hidden files --- .github/workflows/apply-library-repo-templates.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/apply-library-repo-templates.yml b/.github/workflows/apply-library-repo-templates.yml index dee1aea2..cd241cbc 100644 --- a/.github/workflows/apply-library-repo-templates.yml +++ b/.github/workflows/apply-library-repo-templates.yml @@ -69,7 +69,7 @@ jobs: - name: Apply templates and replace placeholders if: ${{ github.event.inputs.template_type }} == 'Generated Connector Template (Standard)' run: | - cp -r template-repo/library-templates/generated-connector-template/files/* target-repo/ + cp -r template-repo/library-templates/generated-connector-template/files/. target-repo/ cd template-repo/library-templates/generated-connector-template/scripts/ bal run replace_placeholders.bal -- ../../../../target-repo/ ${{ github.event.inputs.module_name }} ${{ github.event.inputs.target_repo }} ${{ github.event.inputs.module_version }} ${{ github.event.inputs.ballerina_version }} "${{ github.event.inputs.library_name }}" cd ../../../../target-repo