From 54ad37fd3bf5918c98972bdc622aae52cbf6e987 Mon Sep 17 00:00:00 2001 From: Graham Markall Date: Mon, 29 Jul 2024 15:40:21 +0100 Subject: [PATCH] Add publish.yaml from numbast --- .github/workflows/publish.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..ce915ca --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,27 @@ +# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +name: Publish CONDA PKG + +on: + workflow_dispatch: + +jobs: + build-conda-x86_64: + uses: ./.github/workflows/conda-python-build.yaml + secrets: inherit + with: + build_type: branch + script: "ci/build_conda.sh" + CPU: "amd64" + GPU: "v100" + upload_to_conda: true + build-conda-aarch64: + uses: ./.github/workflows/conda-python-build.yaml + secrets: inherit + with: + build_type: branch + script: "ci/build_conda.sh" + CPU: "arm64" + GPU: "a100" + upload_to_conda: true