Skip to content

Commit 49d85b5

Browse files
authored
Merge pull request #487 from JamesWrigley/rm-manifests
Stop tracking the manifest files
2 parents bb77974 + 85df3cb commit 49d85b5

File tree

7 files changed

+20
-986
lines changed

7 files changed

+20
-986
lines changed

Diff for: .github/workflows/Documentation.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@ on:
77
tags: '*'
88
pull_request:
99

10+
permissions:
11+
actions: write
12+
contents: read
13+
1014
jobs:
1115
build:
1216
runs-on: ubuntu-latest
1317
steps:
1418
- uses: actions/checkout@v4
1519
- uses: julia-actions/setup-julia@latest
1620
with:
17-
version: '1.8'
21+
version: '1'
22+
- uses: julia-actions/cache@v1
1823
- name: Install dependencies
19-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
24+
run: julia --project=docs/ -e 'using Pkg; Pkg.develop([PackageSpec(path=pwd()), PackageSpec(path=pwd() * "/lib/TimespanLogging"), PackageSpec(path=pwd() * "/lib/DaggerWebDash")]); Pkg.instantiate()'
2025
- name: Build and deploy
2126
env:
2227
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token

0 commit comments

Comments
 (0)