We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8f1d61 commit cbe97a5Copy full SHA for cbe97a5
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