Local tarball pacakage

I am creating a tar file based on the dbt project that will have shared macros. I have created the tar file locally and want to test it locally before pushing it to JFrog.

I added below in the packages.yml

  • tarball: /Users/hello/hi-data-etl-dbt-shared-utils/dbt_shared_utils.tar.gz
    name: dbt_shared_utils

while running dbt reps, I am getting error below:
File “/Users/hello/.pyenv/versions/3.11.7/lib/python3.11/site-packages/dbt_common/utils/connection.py”, line 36, in connection_exception_retry
raise ConnectionError("External connection exception occurred: " + str(exc))
dbt_common.exceptions.connection.ConnectionError: External connection exception occurred: Invalid URL ‘/Users/hello/hi-data-etl-dbt-shared-utils/dbt_shared_utils.tar.gz’: No scheme supplied. Perhaps you meant https:///Users/hello/hi-data-etl-dbt-shared-utils/dbt_shared_utils.tar.gz?

Is there a way to point a local file for tarball package reference?