Skip to content

Commit 6f77777

Browse files
committed
fix: correct path to translate.py in workflow script
Signed-off-by: Markus Alexander Kuppe <[email protected]>
1 parent a23a530 commit 6f77777

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/translate.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ jobs:
126126

127127
- name: Run Python translate script on the logic puzzles
128128
run: |
129-
cd python
130-
131129
# Build command arguments
132130
ARGS="--model ${{ github.event.inputs.model }}"
133131
@@ -145,7 +143,7 @@ jobs:
145143
ARGS="$ARGS ${{ github.event.inputs.puzzle_files }}"
146144
147145
echo "Running: python translate.py $ARGS"
148-
python translate.py $ARGS
146+
python python/translate.py $ARGS
149147
env:
150148
GITHUB_API_KEY: ${{ secrets.GITHUB_TOKEN }}
151149

0 commit comments

Comments
 (0)