Fix rustdoc action

This commit is contained in:
Jeehoon Kang
2023-06-21 02:29:17 +09:00
parent d3073ae3d2
commit 12eb4dc0df

View File

@@ -13,12 +13,15 @@ env:
jobs:
rustdoc:
if: github.repository == 'kaist-cp/cs220'
runs-on: self-hosted
runs-on: [self-hosted, ubuntu-22.04]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rustup
run: if ! command -v rustup &>/dev/null; then (curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y); fi
- name: Install Rust toolchain
run: rustup update --no-self-update stable