-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
- name: Load get-version action to grab version component of deployment path | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
|