Skip to content

Commit e30c61a

Browse files
Create Docs.yml
1 parent 82f8d16 commit e30c61a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/Docs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags: '*'
8+
pull_request:
9+
10+
concurrency:
11+
# Skip intermediate builds: always.
12+
# Cancel intermediate builds: only if it is a pull request build.
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
15+
16+
permissions:
17+
contents: write
18+
pull-requests: read
19+
20+
jobs:
21+
docs:
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- name: Build and deploy Documenter.jl docs
26+
uses: TuringLang/actions/DocsDocumenter@main

0 commit comments

Comments
 (0)