Skip to content

Commit 384eb07

Browse files
committed
try fix dj prerelease lock
1 parent be2c997 commit 384eb07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ jobs:
334334
shell: bash
335335
run: |
336336
just setup ${{ steps.sp.outputs.python-path }}
337-
if [[ "${{ matrix.django-version }}" =~ (a|b|rc) ]]; then
337+
DJANGO_VERSION="${{ matrix.django-version }}"
338+
if [[ "$DJANGO_VERSION" =~ (a|b|rc) ]]; then
338339
# prerelease, use exact version pin
339340
just test-lock Django==${{ matrix.django-version }}
340341
else

0 commit comments

Comments
 (0)