From 5f691e8231cdd46abffb4ef0ae92ad42a674aaba Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 6 May 2025 14:20:07 -0600 Subject: [PATCH] [ci] add missing checkout steps to workflow --- .github/workflows/release.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ffe38d2..d056ce5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -60,6 +60,9 @@ jobs: needs: build runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Download artifacts uses: actions/download-artifact@v4 with: @@ -91,6 +94,8 @@ jobs: needs: publish runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 - name: Archive run: ci/archive-job-log.sh ${{ needs.publish.outputs.job_id }} >> $GITHUB_OUTPUT outputs: @@ -102,6 +107,8 @@ jobs: if: needs.publish.result == 'success' && needs.archive-job-log.result != 'cancelled' runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 - name: Download artifacts uses: actions/download-artifact@v4 with: