Skip to content

Commit c936df1

Browse files
Update and rename ci.yml to CI.yml
1 parent bce3525 commit c936df1

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yml renamed to .github/workflows/CI.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
name: CI
22

33
on:
4+
pull_request:
5+
branches:
6+
- master
47
push:
58
branches:
6-
- master # update to match your development branch (master, main, dev, trunk, ...)
9+
- master
710
tags: '*'
8-
pull_request:
9-
1011
jobs:
11-
build:
12+
docs:
13+
name: Documentation
1214
permissions:
1315
actions: write
1416
contents: write
@@ -24,7 +26,7 @@ jobs:
2426
- name: Install dependencies
2527
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2628
- name: Build and deploy
29+
run: julia --project=docs docs/make.jl
2730
env:
28-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
29-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
30-
run: julia --project=docs/ docs/make.jl
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)