Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
RustyTake-Off committed Jun 29, 2024
1 parent 84e6d60 commit 19f0cd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/actions/templates/moveFiles/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dot.move-winfiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -39,5 +39,5 @@ jobs:
continue-on-error: true
with:
targetBranchName: ${{ env.targetBranchName }}
# otherSharedFiles: ${{ env.otherSharedFiles }}
otherSharedFiles: ${{ env.otherSharedFiles }}
otherDirs: ${{ env.otherDirs }}

0 comments on commit 19f0cd0

Please sign in to comment.