diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-02-08 20:16:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 03:16:13 +0000 |
commit | 24bdc1de33494bc1619bfebea826ab08ffb74a01 (patch) | |
tree | a26f3db594046962aa28d13ecb97a8c7f2efa65a | |
parent | b0119134f79fc43a1aceb543ba3ba7b8c7431e80 (diff) |
chore: fix nightly bench (#22362)
This has been broken for a while, but I think `setup-deno` is all that
it needs.
-rw-r--r-- | .github/workflows/bench_cron.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/bench_cron.yml b/.github/workflows/bench_cron.yml index 1a52a5ac5..27f8cc8d7 100644 --- a/.github/workflows/bench_cron.yml +++ b/.github/workflows/bench_cron.yml @@ -37,6 +37,11 @@ jobs: version: "21.12" repo-token: ${{ secrets.GITHUB_TOKEN }} + - name: Install Deno + uses: denoland/setup-deno@v1 + with: + deno-version: v1.x + - name: Build release run: cargo build --release --locked --all-targets |