Skip to content

trying to automate the build #5

trying to automate the build

trying to automate the build #5

Workflow file for this run

name: Release Workflow
on:
push:
branches:
- main # Adjust this to match your release branch or triggering condition
jobs:
trigger-builds:
runs-on: ubuntu-latest
strategy:
matrix:
baseImage: ['nvcr.io/nvidia/tritonserver']
baseTag: ['23.08']
steps:
- name: Trigger Manually Triggered Build and Push Workflow
uses: ./.github/workflows/build.yml # Ensure this references the correct path and branch
with:
baseImage: ${{ matrix.baseImage }}
baseTag: ${{ matrix.baseTag }}