Skip to content

Commit

Permalink
chore: improve release workflow by including fetch-depth and token
Browse files Browse the repository at this point in the history
  • Loading branch information
prnk28 committed Dec 5, 2024
1 parent fb644e6 commit 1211152
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 1211152

Please sign in to comment.