chore: improve release workflow by including fetch-depth and token

This commit is contained in:
Prad Nukala 2024-12-04 21:17:05 -05:00
parent fb644e6c5c
commit 1211152c81
2 changed files with 9 additions and 3 deletions

View File

@ -14,6 +14,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Git Config
run: |
@ -24,8 +27,11 @@ jobs:
with:
bun-version: latest
- name: 'Automated Version Bump'
run: npm version patch
- name: 'Automated Version Bump'
run: |
npm version patch
git push
git push --tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -1,7 +1,7 @@
{
"name": "@onsonr/nebula",
"description": "A specialized fork of Shoelace customized for the Sonr Network, focusing on cryptocurrency and blockchain interfaces.",
"version": "0.0.3",
"version": "0.0.4",
"homepage": "https://github.com/onsonr/styles",
"author": "Prad <prad@sonr.io>",
"license": "MIT",