From 8667033438a46a3898362c481efe3fa824c31338 Mon Sep 17 00:00:00 2001
From: Andrew Truong <itsandrewtruong@gmail.com>
Date: Wed, 9 Oct 2024 14:20:31 -0400
Subject: [PATCH] test

---
 .github/workflows/release.yaml | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index c2bf816d701..e7c7c075ee0 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -22,17 +22,12 @@ jobs:
       - uses: actions/checkout@v3
         with:
           fetch-depth: 0
-      - uses: actions/setup-node@v1
-        with:
-          node-version: '18.x'
-      - run: |
-          pip install build twine
-          ./build_dist.py
-          if [[ -n "$(git status weave_query/weave_query/frontend/sha1.txt --porcelain)" ]]
-          then
-            echo "::error cannot publish release, commited SHA does not match build SHA"
-            exit 1
-          fi
+      - name: Install uv
+        run: |
+          pip install uv
+      - name: Build dist
+        run: |
+          uv build
       - name: upload test distribution
         uses: pypa/gh-action-pypi-publish@release/v1
         if: ${{ inputs.is_test }}