From 8502125d1bfe860279df1bb8c61d6be2771d5153 Mon Sep 17 00:00:00 2001 From: priosshrsth Date: Tue, 18 Aug 2026 09:09:19 +0000 Subject: [PATCH 1/2] chore: bump version to 0.0.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 639baa4..de2bfd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "assembly-kit", - "version": "0.0.4", + "version": "0.0.5", "description": "TypeScript SDK for the Assembly platform", "homepage": "https://github.com/madebyoutside/assembly-kit#readme", "bugs": { From 51a31137194bd2bb682bf755defd225652ac129c Mon Sep 17 00:00:00 2001 From: priosshrsth Date: Tue, 18 Aug 2026 11:10:10 +0000 Subject: [PATCH 2/2] fix release --- .github/workflows/release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 538a345..7fdd0a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,6 +20,16 @@ jobs: with: fetch-depth: 0 + - name: Verify tag matches package.json version + env: + TAG: ${{ github.ref_name }} + run: | + pkg=$(node -p "require('./package.json').version") + if [ "v$pkg" != "$TAG" ]; then + echo "::error::Tag $TAG does not match package.json version $pkg. Tag the version-bump commit (git push --follow-tags), and delete the bad tag." + exit 1 + fi + - name: Setup Bun uses: oven-sh/setup-bun@v2 with: