From 004d13c5ed78384a7af62bd9761c3dd5d8b5c9c0 Mon Sep 17 00:00:00 2001 From: Maxime <98154358+Maxime-Cllt@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:23:35 +0200 Subject: [PATCH] fix ga --- .github/workflows/go.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b4fcb0c..53b1de3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -37,7 +37,7 @@ jobs: run: go build -v . - name: Archive - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.os }} path: GoSqlCleaner @@ -45,23 +45,24 @@ jobs: release: + needs: [ build ] runs-on: ubuntu-latest steps: - name: Download artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-ubuntu-latest path: GoSqlCleaner_ubuntu - name: Download artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-macos-latest path: GoSqlCleaner_macos - name: Download artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-windows-latest path: GoSqlCleaner_windows