Skip to content

Commit 70e4c22

Browse files
committed
Add verbose debugging to GitHub Actions workflow to identify bundle install failure
1 parent 06d53ac commit 70e4c22

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.github/workflows/docs.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,33 @@ jobs:
3737
ruby-version: '3.2'
3838
bundler-cache: true
3939

40+
- name: Debug Ruby Environment
41+
run: |
42+
echo "Ruby version: $(ruby --version)"
43+
echo "Gem version: $(gem --version)"
44+
echo "Bundler version: $(bundle --version)"
45+
echo "Current directory: $(pwd)"
46+
ls -la
47+
4048
- name: Install Jekyll
4149
run: |
4250
gem install jekyll bundler
4351
44-
- name: Install dependencies
52+
- name: Navigate to docs
53+
run: |
54+
cd docs
55+
pwd
56+
ls -la
57+
58+
- name: Install dependencies with verbose output
4559
run: |
4660
cd docs
47-
bundle install
61+
bundle install --verbose
4862
4963
- name: Build documentation
5064
run: |
5165
cd docs
52-
bundle exec jekyll build
66+
bundle exec jekyll build --verbose
5367
5468
- name: Upload artifact
5569
uses: actions/upload-pages-artifact@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ We welcome contributions!
705705
- **💼 [LinkedIn](https://www.linkedin.com/in/barisyerlikaya)**
706706
- **🐙 [GitHub Profile](https://github.com/byerlikaya)**
707707
- **📦 [NuGet Packages](https://www.nuget.org/profiles/barisyerlikaya)**
708-
- **📖 [Documentation](https://yourusername.github.io/SmartRAG)** - Comprehensive guides and API reference
708+
- **📖 [Documentation](https://byerlikaya.github.io/SmartRAG)** - Comprehensive guides and API reference
709709

710710
## 📄 License
711711

0 commit comments

Comments
 (0)