We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb63ca4 commit a8bc912Copy full SHA for a8bc912
3 files changed
.github/workflows/release.yaml
@@ -38,10 +38,10 @@ jobs:
38
- name: Build project
39
run: uv build
40
41
- # - name: Publish package
42
- # env:
43
- # UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
44
- # run: uv publish
+ - name: Publish package
+ env:
+ UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
+ run: uv publish
45
46
- name: Minimize uv cache
47
run: uv cache prune --ci
.github/workflows/tests.yaml
@@ -2,6 +2,8 @@ name: tests
2
3
on:
4
push:
5
+ tags-ignore:
6
+ - "v*.*.*"
7
pull_request:
8
workflow_call:
9
workflow_dispatch:
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
name = "fastapi-cache-plus"
-version = "0.1.1"
+version = "0.1.2"
description = "FastAPI simple cache"
readme = "README.md"
authors = [
0 commit comments