dmnemec / copy_file_to_another_repo_action

This GitHub Action copies a file from the current repository to a location in another repository
Apache License 2.0
182 stars 201 forks source link

Includes multiple files in source_file #80

Closed mostafasoufi closed 1 year ago

mostafasoufi commented 1 year ago

Hey!

Is it double to include more than one file in source_file? something like

source_file: 'dist/assets/*

_tqOflNX

dobbelina commented 1 year ago

@mostafasoufi With this source_file it will copy everything in the assets folder recursively: source_file: 'dist/assets/' With this source_file it will copy everything in the assets folder recursively but not hidden files or folders that starts with a "." in the file/folder name. source_file: 'dist/assets/*'

If you want to copy multiple files from different source files/folders use my fork

mostafasoufi commented 1 year ago

Sounds great, thank you!

Btw, would be great to put this info into the readme.md