Skip to content

Commit 7dd9264

Browse files
authored
Merge pull request #32 from sisl/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2 parents d099f07 + f21ef7c commit 7dd9264

File tree

4 files changed

+14
-1868
lines changed

4 files changed

+14
-1868
lines changed

.github/workflows/CI.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,19 @@ jobs:
5959
name: Documentation
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v3
63-
- uses: julia-actions/setup-julia@v1
62+
- uses: actions/checkout@v5
63+
- uses: julia-actions/setup-julia@v2
6464
with:
6565
version: '1'
66-
- run: |
67-
julia --project=docs -e '
68-
import Pkg; Pkg.add("Documenter")
69-
using Pkg
70-
Pkg.develop(PackageSpec(path=pwd()))
71-
Pkg.instantiate()'
72-
- run: julia --project=docs docs/make.jl
66+
- uses: julia-actions/cache@v2
67+
- name: Configure doc environment
68+
shell: julia --project=docs --color=yes {0}
69+
run: |
70+
using Pkg
71+
Pkg.develop(PackageSpec(path=pwd()))
72+
Pkg.instantiate()
73+
- uses: julia-actions/julia-buildpkg@v1
74+
- uses: julia-actions/julia-docdeploy@v1
7375
env:
7476
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
77+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/draft-pdf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# This should be the path to the paper within your repo.
1515
paper-path: paper.md
1616
- name: Upload
17-
uses: actions/upload-artifact@v4
17+
uses: actions/upload-artifact@v5
1818
with:
1919
name: paper
2020
# This is the output path where Pandoc will write the compiled

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/Manifest.toml
22
docs/build/
3+
docs/Manifest.toml
34
.DS_STORE

0 commit comments

Comments
 (0)