From ae4089309a31d79c094f8842f68e6feee673cbd7 Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R." Date: Mon, 6 Jan 2025 14:04:53 -0700 Subject: [PATCH] Fixed download name --- .github/workflows/dist.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index 77693694..463012c4 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -250,12 +250,14 @@ jobs: cmake: # if: ${{ false }} name: ${{ matrix.os }} type=${{ matrix.BUILD_TYPE }} - needs: [init, distcheck] + needs: [distcheck] strategy: fail-fast: false matrix: - os: [macos-13, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022] - BUILD_TYPE: [Debug, Release] + # os: [macos-13, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, windows-2019, windows-2022] + os: [ubuntu-latest, windows-latest] + # BUILD_TYPE: [Debug, Release] + BUILD_TYPE: [Release] runs-on: ${{ matrix.os }} @@ -266,7 +268,8 @@ jobs: - uses: actions/download-artifact@v4 with: - name: tarball + # name: tarball + name: phreeqc-artifacts - name: Install ninja (Linux) if: ${{ runner.os == 'Linux' }}