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 365833d commit 5c5405aCopy full SHA for 5c5405a
.github/workflows/pages.yaml
@@ -19,18 +19,24 @@ jobs:
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v4
22
+
23
- uses: ruby/setup-ruby@v1
24
with:
- ruby-version: '3.3' # or any supported version
25
+ ruby-version: '3.3'
26
bundler-cache: true
27
+ working-directory: jekyll-site
28
29
- name: Install dependencies
- run: |
- bundle install
30
31
+ run: bundle install
32
33
- name: Build with Jekyll
34
uses: actions/jekyll-build-pages@v1
35
- source: .
36
+ # IMPORTANT: paths are relative to repo root
37
+ source: ./jekyll-site
38
destination: ./_site
39
40
- name: Upload artifact
41
uses: actions/upload-pages-artifact@v3
42
0 commit comments