-
Notifications
You must be signed in to change notification settings - Fork 419
48 lines (42 loc) · 963 Bytes
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Publish Docs to GitHub Pages
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: read
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
html:
runs-on: ubuntu-latest
env:
BUNDLE_WITH: "documentation"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true
- run: ruby support/generate_docs.rb
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
deploy:
permissions:
pages: write
id-token: write
needs: [html]
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1