Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create fallafel chees queen sou.json #536

Merged
merged 6 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Empty file.
1 change: 1 addition & 0 deletions AutoDuty/Paths/Forlder 2/ and you/dasd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
asdasd
1 change: 1 addition & 0 deletions AutoDuty/Paths/fallafel chees queen sou.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Empty file.
Empty file.
13 changes: 13 additions & 0 deletions AutoDuty/Paths/fort/fort2/Blah
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
- name: Move changed files to temporary folder
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
TEMP_DIR=$RUNNER_TEMP/changed_files
mkdir -p $TEMP_DIR
echo "TEMP_DIR=$TEMP_DIR" >> $GITHUB_ENV
echo "Temporary directory created at $TEMP_DIR"
for file in $(echo ${{ steps.changed-files-specific.outputs.all_changed_files }} | jq -r '.[]'); do
dest_dir="$TEMP_DIR/$(dirname "$file" | sed 's|AutoDuty/Paths/||')"
mkdir -p "$dest_dir"
rsync "$file" "$dest_dir/"
done
echo "Files moved to $TEMP_DIR"
Loading