trying to automate the build #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |