Skip to content

Commit 5a9f3ff

Browse files
committed
👷 Set UV_FROZEN environment variable in CI and release workflows
1 parent 9a9b4a8 commit 5a9f3ff

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: ["main"]
88

9+
env:
10+
UV_FROZEN: 1
11+
912
jobs:
1013
lint:
1114
name: Lint

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ jobs:
6666
publish-docs:
6767
runs-on: ubuntu-latest
6868
needs: [bump-version]
69+
env:
70+
UV_FROZEN: 1
6971
steps:
7072
- uses: actions/checkout@v4
7173
with:
@@ -91,6 +93,8 @@ jobs:
9193
publish-pypi:
9294
needs: [bump-version]
9395
runs-on: ubuntu-latest
96+
env:
97+
UV_FROZEN: 1
9498
steps:
9599
- name: Checkout
96100
uses: actions/checkout@v4

0 commit comments

Comments
 (0)