forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: automatic previews configuration
Closes scylladb#11591
- Loading branch information
1 parent
768d77d
commit 26bc537
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: "Docs / Amplify enhanced" | ||
|
||
on: issue_comment | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.issue.pull_request }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Amplify enhanced | ||
env: | ||
TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: scylladb/sphinx-scylladb-theme/.github/actions/amplify-enhanced@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: 1 | ||
applications: | ||
- frontend: | ||
phases: | ||
build: | ||
commands: | ||
- make setupenv | ||
- make dirhtml | ||
artifacts: | ||
baseDirectory: _build/dirhtml | ||
files: | ||
- '**/*' | ||
cache: | ||
paths: [] | ||
appRoot: docs |