From 52857db0a8577f086cfdff692574d40f5a93df77 Mon Sep 17 00:00:00 2001 From: Vitaly Isaev Date: Fri, 22 Dec 2023 12:00:46 +0000 Subject: [PATCH] YQ-2609: reorder actions in workflow --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0adaca6..e87a6449 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,13 +26,13 @@ jobs: run: | echo "This workflow should be triggered only by repository admins" exit 1 + - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Create and push Git tag run: | git tag ${{ github.event.inputs.tag }} git push --tags - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@v4 with: