fix: auto configuration

This commit is contained in:
Aman Varshney
2025-08-15 14:48:53 +05:30
parent e7f893d76b
commit f34bbf509f
4 changed files with 62 additions and 5 deletions

View File

@@ -4,7 +4,6 @@ on:
push:
branches:
- main
pull_request:
jobs:
release:
@@ -13,9 +12,14 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare repository
run: git fetch --unshallow --tags
run: |
git fetch --unshallow --tags
git checkout main
- name: Setup Bun
uses: oven-sh/setup-bun@v2