Skip to content

Commit a4d5d59

Browse files
author
Julia Package Butler
committed
Fix issues identified by Julia Package Butler
1 parent c140d41 commit a4d5d59

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Deploy documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- v*
9+
10+
jobs:
11+
docdeploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1.0.0
15+
- uses: julia-actions/setup-julia@latest
16+
with:
17+
version: 1.3.0
18+
- uses: julia-actions/julia-buildpkg@latest
19+
env:
20+
PYTHON: ""
21+
- uses: julia-actions/julia-docdeploy@releases/v1
22+
env:
23+
DOCUMENTER_KEY: ${{ secrets.JLPKGBUTLER_TOKEN }}
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)