We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8668b81 commit e51e738Copy full SHA for e51e738
.github/workflows/deploy_web_site.yml
@@ -56,7 +56,7 @@ jobs:
56
ruby-version: '3.4.2' # 替换为你项目实际使用的版本
57
bundler-cache: true
58
# Install ruby dependencies
59
- - name: Install dependencies
+ - name: Install dependencies and build site
60
run: |
61
pwd
62
ls -lh
@@ -65,7 +65,8 @@ jobs:
65
git checkout main
66
gem install bundler
67
bundle install --jobs 4 --retry 3
68
- - run: bundle exec jekyll build -d "_site" --trace
+ # build site
69
+ bundle exec jekyll build -d "_site" --trace
70
env:
71
JEKYLL_ENV: production
72
#Setup pages
0 commit comments