Fix version bump

This commit is contained in:
Andras Schmelczer 2025-07-08 23:04:35 +01:00
parent 5ce93dfb5e
commit ff555d8ab6
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -23,13 +23,18 @@ else
fi fi
echo "Bumping versions" echo "Bumping versions"
cd backend
cargo set-version --bump $1 cargo set-version --bump $1
wasm-pack build --target web --features wasm wasm-pack build --target web --features wasm,wee_alloc
cd reconcile-js
npm version $1
cd -
# Commit and tag
git add . git add .
TAG=$(node -p "require('./reconcile-js/package.json').version")
git commit -m "Bump versions to $TAG" git commit -m "Bump versions to $TAG"
git push git push