We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ab657 commit 9f121a2Copy full SHA for 9f121a2
1 file changed
.github/workflows/rust.yml
@@ -149,7 +149,11 @@ jobs:
149
150
- name: Compile shaders to SPIR-V
151
working-directory: shaders/rust
152
- run: python3 compileshaders.py
+ run: |
153
+ if [ "${{ runner.os }}" == "Windows" ]; then
154
+ export PATH="$HOME/.cargo/bin:$PATH"
155
+ fi
156
+ python3 compileshaders.py
157
158
- name: Verify no uncommitted changes
159
shell: bash
0 commit comments