Skip to content

Commit c117665

Browse files
Fix environment variable usage in workflow
1 parent ccb21ec commit c117665

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/code-style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: codestyle pint 8.2
3636

3737
- name: Normalize composer.json
38-
if: $CAN_FIX == true
38+
if: env.CAN_FIX == true
3939
run: composer normalize
4040

4141
- name: Code-style
@@ -96,7 +96,7 @@ jobs:
9696
fi
9797
9898
- name: Remove node_modules
99-
if: $CAN_FIX == true
99+
if: env.CAN_FIX == true
100100
run: rm -rf node_modules
101101

102102
- name: Remove package.json

0 commit comments

Comments
 (0)