-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
actions-rs/install
to install mksite
This will (eventually) give us a huge build time boost when actions-rs/meta#21 is implemented.
- Loading branch information
Showing
1 changed file
with
10 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 |
---|---|---|
|
@@ -38,8 +38,16 @@ jobs: | |
id: pages | ||
uses: actions/configure-pages@v2 | ||
- name: Install mksite | ||
run: | | ||
cargo install mksite | ||
# You may pin to the exact commit or the version. | ||
# uses: actions-rs/install@9da1d2adcfe5e7c16992e8242ca33a56b6d9b101 | ||
uses: actions-rs/[email protected] | ||
with: | ||
# Binary crate name | ||
crate: mksite | ||
# Use tool cache to speed up installation | ||
use-tool-cache: true | ||
# Store installed binary in the GitHub Actions cache (not used yet) | ||
use-cache: true | ||
- name: Build with mksite | ||
run: | | ||
make | ||
|