Skip to content

Commit

Permalink
Use actions-rs/install to install mksite
Browse files Browse the repository at this point in the history
This will (eventually) give us a huge build time boost when
actions-rs/meta#21 is implemented.
  • Loading branch information
alterae committed Oct 15, 2022
1 parent 996a5c5 commit ec4d14f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/mksite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec4d14f

Please sign in to comment.