diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec159ab..fafbed3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,8 +8,8 @@ on: - v* env: PIP_CACHE_DIR: .cache/pip - PRE_COMMIT_HOME: .cache/pre-commit HATCH_CACHE_DIR: .cache/hatch + UV_CACHE_DIR: .cache/uv HATCH_INDEX_USER: __token__ HATCH_INDEX_REPO: main @@ -26,4 +26,5 @@ jobs: - run: pip install hatch - run: hatch version - run: hatch build + - run: ls -lhtr dist - run: hatch publish diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index 7b2a463..2d3a0af 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -25,4 +25,5 @@ jobs: - run: pip install hatch - run: hatch version - run: hatch build + - run: ls -lhtr dist - run: hatch publish diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aaa0a19..0fcd2b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,7 @@ env: PIP_CACHE_DIR: .cache/pip PRE_COMMIT_HOME: .cache/pre-commit HATCH_CACHE_DIR: .cache/hatch + UV_CACHE_DIR: .cache/uv jobs: test: strategy: diff --git a/pyproject.toml b/pyproject.toml index 45adf1c..66de32c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ source = "versioningit" [tool.hatch.build] exclude = [ + "/.cache", "/.github", "/tests", "/.pre-commit-config.yaml",