We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b9b77d commit bd22e2aCopy full SHA for bd22e2a
1 file changed
.github/workflows/docsygen.yml
@@ -22,25 +22,17 @@ jobs:
22
url: ${{ steps.deploy.outputs.page_url }}
23
steps:
24
- uses: actions/checkout@v6
25
- with:
26
- repository: giellalt/giellalt.github.io
27
28
- - name: Setup Ruby
29
- uses: ruby/setup-ruby@v1
30
31
- ruby-version: '3.1'
32
- bundler-cache: true
+ - name: Setup Pages
+ uses: actions/configure-pages@v6
33
34
- - name: Build Jekyll site
35
- env:
36
- JEKYLL_GITHUB_TOKEN: ${{ secrets.GIELLALT_DOCS_GH_TOKEN }}
37
- run: |
38
- bundle exec jekyll build
+ - name: Build with Jekyll
+ uses: actions/jekyll-build-pages@v1
+ with:
+ token: ${{ secrets.GIELLALT_DOCS_GH_TOKEN }}
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