Skip to content

Commit

Permalink
ci: fix docs build nightly version
Browse files Browse the repository at this point in the history
Refs #3750. Follow-up to #3749, which updated the per-PR CI workflow,
but not the deploy-on-merge-to-main workflow.
  • Loading branch information
conorsch authored and TalDerei committed Feb 8, 2024
1 parent adbaf3a commit 9cf97b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ jobs:
uses: actions/checkout@v4
with:
lfs: true

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@nightly
# The script for rustdoc build requires nightly toolchain.
uses: dtolnay/rust-toolchain@master
with:
# TODO 2024-02-06: this is pinned due to tkaitchuck/aHash#200, see GH3750.
toolchain: nightly-2024-02-01

- name: Load Rust caching
uses: astriaorg/buildjet-rust-cache@v2.5.1
- name: Load get-version action to grab version component of deployment path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
# The script for rustdoc build requires nightly toolchain.
uses: dtolnay/rust-toolchain@master
with:
# TODO 24-02-06: this is pinned due to tkaitchuck/aHash#200.
# TODO 2024-02-06: this is pinned due to tkaitchuck/aHash#200, see GH3750.
toolchain: nightly-2024-02-01
- name: Load rust cache
uses: astriaorg/buildjet-rust-cache@v2.5.1
Expand Down

0 comments on commit 9cf97b6

Please sign in to comment.