From ed50ec084df47f57d952ebe28a516ed392af1753 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 16 Sep 2024 02:41:17 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6bb0b5..a764115 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,13 @@ jobs: strategy: matrix: - go-version: [1.22.x] + go-version: [1.20.x] os: [ubuntu-latest, macos-latest, windows-latest] arch: [amd64, arm64] steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Set up Go uses: actions/setup-go@v4 @@ -57,11 +57,9 @@ jobs: shell: bash - name: Upload zipped binaries and checksums as artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: - name: binaries + name: binaries-${{ matrix.os }}-${{ matrix.arch }} path: | - run-all-linux-*.zip - run-all-macos-*.zip - run-all-windows-*.zip - *.zip.sha256 \ No newline at end of file + run-all-${{ matrix.os }}-${{ matrix.arch }}.zip + run-all-${{ matrix.os }}-${{ matrix.arch }}.zip.sha256 \ No newline at end of file