diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2024-04-27 15:48:35 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2024-04-27 15:48:35 +0200 |
| commit | a700897d5a46c03f9cac060b6854de44ac33733b (patch) | |
| tree | b0eb4c76d65a83b18ac3b382324fe1f47f702e22 /.github/workflows | |
| parent | 163ea3328b771a7092c1345de6a1122158651655 (diff) | |
| download | rust-a700897d5a46c03f9cac060b6854de44ac33733b.tar.gz rust-a700897d5a46c03f9cac060b6854de44ac33733b.zip | |
Add missing checkout step
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a607defdb2..d691b72488b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,6 +177,10 @@ jobs: - job if: "success() && github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'" steps: + - name: checkout the source code + uses: actions/checkout@v4 + with: + fetch-depth: 2 - name: publish toolstate run: src/ci/publish_toolstate.sh shell: bash |
