diff options
| author | coco875 <pereira.jannin@gmail.com> | 2024-01-24 23:48:31 +0100 |
|---|---|---|
| committer | Lywx <kiritodev01@gmail.com> | 2024-01-24 16:52:59 -0600 |
| commit | 06134be57a88ba1f5297dcedf29094b78aa5d5fc (patch) | |
| tree | 16a935eeba1c4ae4bbf8f27f0e7d9e1c4d875611 | |
| parent | 9f5cd5566aa17190ca1ff77cfd38878f535b9905 (diff) | |
add torch prefix for artefacts
| -rw-r--r-- | .github/workflows/linux_build.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/mac_build.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/windows_build.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index d24d893..3dd3747 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -25,5 +25,5 @@ jobs: - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: - name: linux-x64 + name: torch-linux-x64 path: torch-release
\ No newline at end of file diff --git a/.github/workflows/mac_build.yml b/.github/workflows/mac_build.yml index 3b11737..bc13a3b 100644 --- a/.github/workflows/mac_build.yml +++ b/.github/workflows/mac_build.yml @@ -24,5 +24,5 @@ jobs: - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: - name: mac-x64 + name: torch-mac-x64 path: torch-release
\ No newline at end of file diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 7859016..6f0ebbd 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -19,5 +19,5 @@ jobs: - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: - name: windows-x64 + name: torch-windows-x64 path: build/x64
\ No newline at end of file |
