From a9c3c69e1fad73ff3356b3ec446967cb0c0edeeb Mon Sep 17 00:00:00 2001 From: civisrom <167646351+civisrom@users.noreply.github.com> Date: Tue, 4 Feb 2025 20:03:19 +0300 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5128a3b..515938d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,15 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - + + - name: Clean Go module cache + run: go clean -modcache + + - name: Force update Go modules + run: | + go mod tidy + go mod download + - name: Setup Go uses: actions/setup-go@v5 with: