Skip to content

Commit f740aa7

Browse files
author
Arne Durr
committed
Merge branch 'main' of https://github.com/D-Byte/bolt.new-any-llm into main
2 parents 3d37940 + 1f938fc commit f740aa7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2894
-1904
lines changed

.github/workflows/commit.yaml

-39
This file was deleted.

.github/workflows/docs.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
paths:
8+
- 'docs/**' # This will only trigger the workflow when files in docs directory change
79
permissions:
810
contents: write
911
jobs:

.github/workflows/update-stable.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ jobs:
166166
- name: Commit and Tag Release
167167
run: |
168168
git pull
169-
echo "{ \"commit\": \"$COMMIT_HASH\", \"version\": \"$NEW_VERSION\" }" > app/commit.json
170-
git add package.json pnpm-lock.yaml changelog.md app/commit.json
169+
git add package.json pnpm-lock.yaml changelog.md
171170
git commit -m "chore: release version ${{ steps.bump_version.outputs.new_version }}"
172171
git tag "v${{ steps.bump_version.outputs.new_version }}"
173172
git push

.husky/pre-commit

-11
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,4 @@ if ! pnpm lint; then
2929
exit 1
3030
fi
3131

32-
# Update commit.json with the latest commit hash
33-
echo "Updating commit.json with the latest commit hash..."
34-
COMMIT_HASH=$(git rev-parse HEAD)
35-
if [ $? -ne 0 ]; then
36-
echo "❌ Failed to get commit hash. Ensure you are in a git repository."
37-
exit 1
38-
fi
39-
40-
echo "{ \"commit\": \"$COMMIT_HASH\" }" > app/commit.json
41-
git add app/commit.json
42-
4332
echo "👍 All checks passed! Committing changes..."

0 commit comments

Comments
 (0)