Skip to content

Commit 575f1a9

Browse files
committed
2 parents 34e38e6 + c9d7149 commit 575f1a9

2 files changed

Lines changed: 24 additions & 3 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 }}
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using Documenter: deploydocs, makedocs
2-
using Pkg: develop, instantiate, PackageSpec
32
using QuerySQLite
43

5-
develop(PackageSpec(path=pwd()))
6-
instantiate()
74
makedocs(sitename = "QuerySQLite.jl", modules = [QuerySQLite], doctest = false)
85
deploydocs(repo = "github.com/queryverse/QuerySQLite.jl.git")

0 commit comments

Comments
 (0)