From e8a4d311f50359eebaed74d398b873046c21a0f0 Mon Sep 17 00:00:00 2001 From: Matteo Fordiani Date: Sun, 13 Aug 2023 23:01:24 +0200 Subject: [PATCH] ci(fix): move checkout before semantic-release --noop --- .github/workflows/dispatch.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dispatch.yml b/.github/workflows/dispatch.yml index ac90320..ae2da55 100644 --- a/.github/workflows/dispatch.yml +++ b/.github/workflows/dispatch.yml @@ -13,6 +13,10 @@ jobs: runs-on: ubuntu-latest concurrency: release steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Check release status id: release-status shell: bash @@ -26,10 +30,6 @@ jobs: else echo "Should not release." fi - - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - uses: actions/github-script@v6 id: dispatch-tests