Skip to content

Commit 3ad629f

Browse files
committed
fix workflow overriding itself
1 parent dbf5587 commit 3ad629f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/configure_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: |
4747
# This command finds all files and uses 'sed' to replace all the placeholders.
4848
# The sed delimiter is changed from '/' to '|' to safely handle path names.
49-
find . -type f -not -path './.git/*' -exec sed -i \
49+
find . -type f -not -path './.git/*' -not -path './.github/workflows/*' -exec sed -i \
5050
-e "s|{{PROJECT_NAME}}|${{ github.event.inputs.new_project_name }}|g" \
5151
-e "s|{{PROJECT_NAME_LOWER}}|${{ steps.set-variables.outputs.project_name_lower }}|g" \
5252
-e "s|{{PROJECT_DESCRIPTION}}|${{ github.event.inputs.project_description }}|g" \

0 commit comments

Comments
 (0)