diff --git a/.github/workflows/menlo-build.yml b/.github/workflows/menlo-build.yml index 302514957a512..2bf37310c074d 100644 --- a/.github/workflows/menlo-build.yml +++ b/.github/workflows/menlo-build.yml @@ -444,7 +444,7 @@ jobs: run: | wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/12.0/linux/cuda.tar.gz -O /tmp/cudart-llama-bin-linux-cu12.0-x64.tar.gz wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/11.7/linux/cuda.tar.gz -O /tmp/cudart-llama-bin-linux-cu11.7-x64.tar.gz - wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/12.0/windows/cuda.tar.gz -O /tmp/cudart-llama-bin-win-cu12.0-64.tar.gz + wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/12.0/windows/cuda.tar.gz -O /tmp/cudart-llama-bin-win-cu12.0-x64.tar.gz wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/11.7/windows/cuda.tar.gz -O /tmp/cudart-llama-bin-win-cu11.7-x64.tar.gz version=${{ needs.create-draft-release.outputs.version }} @@ -477,10 +477,10 @@ jobs: echo " $(sha512sum /tmp/cudart-llama-bin-win-cu11.7-x64.tar.gz | awk '{ print $1 }')" >> checksum.yml echo " size: $(stat -c%s /tmp/cudart-llama-bin-win-cu11.7-x64.tar.gz)" >> checksum.yml - echo "- url: cudart-llama-bin-win-cu12.4.tar.gz" >> checksum.yml + echo "- url: cudart-llama-bin-win-cu12.0-x64.tar.gz" >> checksum.yml echo " sha512: >-" >> checksum.yml - echo " $(sha512sum /tmp/cudart-llama-bin-win-cu12.4.tar.gz | awk '{ print $1 }')" >> checksum.yml - echo " size: $(stat -c%s /tmp/cudart-llama-bin-win-cu12.4.tar.gz)" >> checksum.yml + echo " $(sha512sum /tmp/cudart-llama-bin-win-cu12.0-x64.tar.gz | awk '{ print $1 }')" >> checksum.yml + echo " size: $(stat -c%s /tmp/cudart-llama-bin-win-cu12.0-x64.tar.gz)" >> checksum.yml cat checksum.yml - name: Upload checksum.yml to GitHub Release @@ -516,15 +516,15 @@ jobs: asset_name: cudart-llama-bin-linux-cu11.7-x64.tar.gz asset_content_type: application/gzip - - name: upload cudart-llama-bin-win-cu12.4.tar.gz to Github Release + - name: upload cudart-llama-bin-win-cu12.0-x64.tar.gz to Github Release uses: actions/upload-release-asset@v1 if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.create-draft-release.outputs.upload_url }} - asset_path: /tmp/cudart-llama-bin-win-cu12.4.tar.gz - asset_name: cudart-llama-bin-win-cu12.4.tar.gz + asset_path: /tmp/cudart-llama-bin-win-cu12.0-x64.tar.gz + asset_name: cudart-llama-bin-win-cu12.0-x64.tar.gz asset_content_type: application/gzip - name: upload cudart-llama-bin-win-cu11.7-x64.tar.gz to Github Release