Skip to content

Commit 6d3fc84

Browse files
committed
Corrected paths
1 parent e920b94 commit 6d3fc84

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/sync-dataset-json-changes-to-js-utils.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
jobs:
1717
build:
18-
if: (github.repository == 'adamlui/js-utils') && !contains(github.event.head_commit.message, '[auto-sync')
18+
if: (github.repository == 'adamlui/python-utils') && !contains(github.event.head_commit.message, '[auto-sync')
1919
runs-on: ubuntu-24.04
2020
permissions:
2121
contents: read
@@ -67,7 +67,7 @@ jobs:
6767
run: |
6868
dataset="${{ env.DATASET }}"
6969
echo "Syncing $dataset.json"
70-
src_file=$(find "${GITHUB_WORKSPACE}/adamlui/js-utils" -name "$dataset.json" -type f | head -n 1)
70+
src_file=$(find "${GITHUB_WORKSPACE}/adamlui/python-utils" -name "$dataset.json" -type f | head -n 1)
7171
if [[ -z "$src_file" ]] ; then echo "No source file found for $dataset" ; exit 1 ; fi
7272
snake_dataset=$(echo "$dataset" | tr '-' '_')
7373
dest_dir="${GITHUB_WORKSPACE}/adamlui/js-utils/$dataset"

0 commit comments

Comments
 (0)