Skip to content

Commit c3d3f35

Browse files
committed
More build path fixes
1 parent 14e9a5c commit c3d3f35

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/dawn.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
with:
4646
name: dawn-source
4747
path: |
48-
Dawn/dawn-source/
49-
!Dawn/dawn-source/.git
48+
Dawn/dawn_source/
49+
!Dawn/dawn_source/.git
5050
retention-days: 1
5151

5252
- name: Read Dawn version
@@ -90,7 +90,7 @@ jobs:
9090
uses: actions/checkout@v4
9191

9292
- name: Set up Python
93-
uses: actions/setup-python@v4
93+
uses: actions/setup-python@v5
9494
with:
9595
python-version: ${{ matrix.python-version }}
9696

@@ -101,10 +101,10 @@ jobs:
101101
pip install -r requirements.txt
102102
103103
- name: Download Dawn source
104-
uses: actions/download-artifact@v4
104+
uses: actions/download-artifact@v5
105105
with:
106106
name: dawn-source
107-
path: Dawn/
107+
path: Dawn/dawn_source/
108108

109109
- name: Build Dawn for ${{ matrix.target }}
110110
run: |

Dawn/dawn_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,4 @@ def get_dawn_path() -> pathlib.Path:
193193
Returns:
194194
Path to the Dawn source directory
195195
"""
196-
return pathlib.Path("dawn-source").resolve()
196+
return pathlib.Path("dawn_source").resolve()

0 commit comments

Comments
 (0)