Skip to content

Commit b7e6a23

Browse files
committed
wip
1 parent 48655ed commit b7e6a23

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/redirector.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,10 @@ jobs:
2727
env:
2828
RENAMED_FILES: ${{ steps.changed-files.outputs.all_old_new_renamed_files }}
2929
run: |
30-
echo "Changed files: "
31-
echo "${{ steps.changed-files.outputs.all_old_new_renamed_files }}"
30+
for file in $$RENAMED_FILES; do
31+
old=$(echo "$file" | cut -d',' -f1)
32+
new=$(echo "$file" | cut -d',' -f2)
33+
echo "Old: $old"
34+
echo "New: $new"
35+
36+
# source/fundamentals/authentication/aws-iam.txt,source/fundamentals/authentication/something-else.txt source/fundamentals/indexes/search-indexes.txt,source/fundamentals/indexes/search-indexes-testing.txt

0 commit comments

Comments
 (0)