From 19f0cd09bb2b14632a3137a5ec48104d015b2050 Mon Sep 17 00:00:00 2001 From: RustyTake-Off <109174317+RustyTake-Off@users.noreply.github.com> Date: Sat, 29 Jun 2024 17:31:04 +0200 Subject: [PATCH] Update --- .github/actions/templates/moveFiles/action.yaml | 3 +-- .github/workflows/dot.move-winfiles.yaml | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/actions/templates/moveFiles/action.yaml b/.github/actions/templates/moveFiles/action.yaml index 7a9cce9..8cf8641 100644 --- a/.github/actions/templates/moveFiles/action.yaml +++ b/.github/actions/templates/moveFiles/action.yaml @@ -75,8 +75,7 @@ runs: for item in ${{ inputs.otherDirs }}; do if [ -d "$item" ]; then shopt -s dotglob - cp "$item"/* . - # cp -r "$item"/.[!.]* . + cp -r "$item"/* . shopt -u dotglob fi done diff --git a/.github/workflows/dot.move-winfiles.yaml b/.github/workflows/dot.move-winfiles.yaml index 1df684f..9ddce8a 100644 --- a/.github/workflows/dot.move-winfiles.yaml +++ b/.github/workflows/dot.move-winfiles.yaml @@ -19,8 +19,8 @@ permissions: env: targetBranchName: 'winfiles' - otherSharedFiles: 'genfiles/vscode/vscode.json genfiles/browsers' # space separated - otherDirs: 'docs/images genfiles' # space separated + otherSharedFiles: '' # space separated + otherDirs: 'genfiles' # space separated jobs: move-files: @@ -39,5 +39,5 @@ jobs: continue-on-error: true with: targetBranchName: ${{ env.targetBranchName }} - # otherSharedFiles: ${{ env.otherSharedFiles }} + otherSharedFiles: ${{ env.otherSharedFiles }} otherDirs: ${{ env.otherDirs }}