ci: remove lockfile verify race condition

uv lock --check in a separate job races against the update-lockfile
bot. Replace with uv lock inline in release.yml and drop the pre-job
from docker-publish.yml entirely.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 03:43:05 +00:00
co-authored by Claude Sonnet 4.6
parent 762ee160c3
commit b98fc94179
2 changed files with 6 additions and 30 deletions
-15
View File
@@ -15,22 +15,8 @@ env:
IMAGE_NAME: sudolulo/winnow
jobs:
verify-lockfile:
name: Verify uv.lock is current
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Check lockfile is up to date
run: uv lock --check
build:
name: Build (${{ matrix.platform }})
needs: verify-lockfile
runs-on: ${{ matrix.runner }}
strategy:
matrix:
@@ -140,4 +126,3 @@ jobs:
- name: Inspect image
run: |
docker buildx imagetools inspect ${{ steps.tags.outputs.tags }}