From ff8f6fc33d10dcc2724c14ea06ab8cb09b7d1c6f Mon Sep 17 00:00:00 2001 From: Craig Russell Date: Wed, 21 Feb 2024 10:00:26 +0000 Subject: [PATCH] trying to automate the build --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d2d7e1e..badc408 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,3 @@ -# .github/workflows/release.yml name: Release Workflow on: @@ -13,7 +12,9 @@ jobs: matrix: baseImage: ['nvcr.io/nvidia/tritonserver'] baseTag: ['23.08'] - uses: ./.github/workflows/build.yml - with: - baseImage: ${{ matrix.baseImage }} - baseTag: ${{ matrix.Tag}} + steps: + - name: Trigger Manually Triggered Build and Push Workflow + uses: ./.github/workflows/build.yml@main # Ensure this references the correct path and branch + with: + baseImage: ${{ matrix.baseImage }} + baseTag: ${{ matrix.baseTag }}