onnxruntime/tools/ci_build/github/azure-pipelines/nuget-cuda-publishing-pipeline.yml

30 lines
621 B
YAML

resources:
pipelines:
- pipeline: build
source: 'Nuget-CUDA-Packaging-Pipeline'
trigger:
branches:
include:
- main
branch: main
parameters:
- name: isReleaseBuild
type: boolean
default: false
variables:
- name: ArtifactFeed
${{ if eq(parameters.isReleaseBuild, false) }}:
value: ort-cuda-12-nightly
${{ else }}:
value: onnxruntime-cuda-12
stages:
- template: stages/nuget-cuda-publishing-stage.yml
parameters:
artifact_feed: $(ArtifactFeed)
- template: stages/java-cuda-publishing-stage.yml
parameters:
artifact_feed: $(ArtifactFeed)