chore: add git commit step to capture build artifacts in release workflow

This commit is contained in:
Prad Nukala 2024-12-05 19:13:21 -05:00
parent 6be84c36a2
commit 1091b8ecfc

View File

@ -32,8 +32,10 @@ jobs:
- name: Build
run: bun run build
- name: 'Automated Version Bump'
- name: 'Automated Version Bump and Release'
run: |
git add .
git commit -m "chore: update build artifacts [skip ci]" || echo "No changes to commit"
npm version patch
git push
git push --tags