We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6654e0 commit 21bb731Copy full SHA for 21bb731
1 file changed
.github/workflows/docsygen.yml
@@ -22,17 +22,25 @@ jobs:
22
url: ${{ steps.deploy.outputs.page_url }}
23
steps:
24
- uses: actions/checkout@v6
25
+ with:
26
+ repository: giellalt/giellalt.github.io
27
- - name: Setup Pages
- uses: actions/configure-pages@v6
28
-
29
- - name: Build with Jekyll
30
- uses: actions/jekyll-build-pages@v1
+ - name: Setup Ruby
+ uses: ruby/setup-ruby@v1
31
with:
32
- token: ${{ secrets.GIELLALT_DOCS_GH_TOKEN }}
+ ruby-version: '3.1'
+ bundler-cache: true
33
+
34
+ - name: Build Jekyll site
35
+ env:
36
+ JEKYLL_GITHUB_TOKEN: ${{ secrets.GIELLALT_DOCS_GH_TOKEN }}
37
+ run: |
38
+ bundle exec jekyll build
39
40
- name: Upload artifact
41
uses: actions/upload-pages-artifact@v5
42
43
+ path: _site
44
45
- name: Deploy to GitHub Pages
46
id: deploy
0 commit comments