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 a7ca10e commit 3920be6Copy full SHA for 3920be6
.github/workflows/ci.yml
@@ -11,5 +11,16 @@ jobs:
11
ruby-version: '3.3'
12
- name: Install dependencies
13
run: bundle install && bundle exec appraisal install
14
+ - name: Setup Pages
15
+ id: configure-pages
16
+ uses: actions/configure-pages@v5
17
+ - name: Setup CI config
18
+ run: |
19
+ echo "---" > _config_ci.yml
20
+ echo "baseurl: ${{ steps.configure-pages.outputs.base_path }}" >> _config_ci.yml
21
- name: Build site
- run: bundle exec appraisal jekyll build --future
22
+ env:
23
+ JEKYLL_ENV: production
24
+ run: bundle exec appraisal jekyll build --future --config _config_ci.yml,_config.yml
25
+ - name: Upload artifact
26
+ uses: actions/upload-pages-artifact@v3
0 commit comments