Skip to content

Commit 6f0c164

Browse files
committed
Fix usage of env varaible in github actions
1 parent c2de600 commit 6f0c164

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install uv
2020
uses: astral-sh/setup-uv@v3
2121
with:
22-
version: $UV_VERSION
22+
version: ${{ env.UV_VERSION }}
2323
- run: make lint
2424

2525
test:
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install uv
3636
uses: astral-sh/setup-uv@v3
3737
with:
38-
version: $UV_VERSION
38+
version: ${{ env.UV_VERSION }}
3939
- run: make test
4040
- run: python3 -m pip install nox && make test-dep-versions
4141

@@ -52,7 +52,7 @@ jobs:
5252
- name: Install uv
5353
uses: astral-sh/setup-uv@v3
5454
with:
55-
version: $UV_VERSION
55+
version: ${{ env.UV_VERSION }}
5656
- name: check GITHUB_REF matches package version
5757
uses: samuelcolvin/check-python-version@v3
5858
with:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v3
2525
with:
26-
version: $UV_VERSION
26+
version: ${{ env.UV_VERSION }}
2727

2828
- name: Lint
2929
run: make lint
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install uv
4646
uses: astral-sh/setup-uv@v3
4747
with:
48-
version: $UV_VERSION
48+
version: ${{ env.UV_VERSION }}
4949

5050
- name: Run tests
5151
run: make test

0 commit comments

Comments
 (0)