diff --git a/.github/actions/build-cached-packs/action.yaml b/.github/actions/build-cached-packs/action.yaml index a6a96dc6d30..5df16347be4 100644 --- a/.github/actions/build-cached-packs/action.yaml +++ b/.github/actions/build-cached-packs/action.yaml @@ -15,7 +15,7 @@ runs: - name: Download Packs Data run: | # Find the latest packs upload workflow. - run_id=$(gh run list --workflow="packs_upload.yaml" --limit 1 --json databaseId | jq -r '.[0].databaseId') + run_id=$(gh run list --workflow="post_release.yaml" --limit 1 --json databaseId | jq -r '.[0].databaseId') # Remove any downloaded artifacts, should they exist. rm -rf ./downloaded_artifacts # Download the latest artifact to a new dir. diff --git a/scripts/get-cached-packs.sh b/scripts/get-cached-packs.sh index 43cfa9e33cc..3f404351184 100755 --- a/scripts/get-cached-packs.sh +++ b/scripts/get-cached-packs.sh @@ -24,7 +24,7 @@ else fi # Find the latest packs upload workflow. -run_id=$(gh run list --workflow="packs_upload.yaml" --limit 1 --json databaseId | jq -r '.[0].databaseId') +run_id=$(gh run list --workflow="post_release.yaml" --limit 1 --json databaseId | jq -r '.[0].databaseId') # Remove any downloaded artifacts, should they exist. rm -rf ./downloaded_artifacts