From 3ebf0439c13971627d9a6e12be52ca8e96a90442 Mon Sep 17 00:00:00 2001 From: Cheng JIANG Date: Wed, 13 May 2020 20:16:44 +0200 Subject: [PATCH] fix: rust-toolchain missing in release workflow --- .github/workflows/release.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 225aa9f7..6dd99937 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,10 +10,20 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + components: rustfmt, clippy + override: true + - name: Setup Node.js uses: actions/setup-node@v1 with: node-version: 12 + - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}