Skip to content

Commit

Permalink
fixed bash for loop, now testing using env variable instead of modify…
Browse files Browse the repository at this point in the history
…ing all_changed_files
  • Loading branch information
rjwignar committed Nov 25, 2023
1 parent 8cb1c04 commit a575393
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,14 @@ jobs:
done
echo $PROCESS_OUTPUT
PROCESS_OUTPUT="${PROCESS_OUTPUT// /\\. }"
PROCESS_OUTPUT="${PROCESS_OUTPUT// /\\ }"
echo $PROCESS_OUTPUT
echo "::set-outputs name=all_changed_files::${PROCESS_OUTPUT}"
echo ${{ steps.changed-files.outputs.all_changed_files }}
echo "my_changed_files=$PROCESS_OUTPUT" >> "$GITHUB_ENV"
my_changed_files=$PROCESS_OUTPUT
echo "my_changed_files=${my_changed_files}" >> "$GITHUB_ENV"
echo ${{env.my_changed_files}}
- name: Format changed files
if: steps.changed-files.outputs.any_changed == 'true'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ struct PerPassParallax
uint ShadowsEndFade;
};


StructuredBuffer<PerPassParallax> perPassParallax : register(t30);

#include "ComplexParallaxMaterials/CRPM.hlsli"

0 comments on commit a575393

Please sign in to comment.