From ae035f7403f010ba29ab751505d0fadc5e06587e Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Wed, 13 Mar 2024 19:22:12 -0500 Subject: [PATCH] fix file paths in update labels --- .github/workflows/update_labels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_labels.yml b/.github/workflows/update_labels.yml index 6b78dd1fc..e4dfba52c 100644 --- a/.github/workflows/update_labels.yml +++ b/.github/workflows/update_labels.yml @@ -36,9 +36,9 @@ jobs: working-directory: ${{ env.WORKING_DIR }} run: | python -m pip install --upgrade pip - curl https://github.com/ror-community/curation_ops/blob/v2-crosswalk/update_related_records/requirements.txt -o requirements.txt + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_related_records/requirements.txt -o requirements.txt pip install -r requirements.txt - curl https://github.com/ror-community/curation_ops/blob/v2-crosswalk/update_related_records/update_related.py -o update_related.py + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_related_records/update_related.py -o update_related.py if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then python update_related.py -v 1 fi