trying to automate the build #2
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
# .github/workflows/release.yml | ||
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'] | ||
uses: ./.github/workflows/build.yml | ||
Check failure on line 16 in .github/workflows/release.yml GitHub Actions / .github/workflows/release.ymlInvalid workflow file
|
||
with: | ||
baseImage: ${{ matrix.baseImage }} | ||
baseTag: ${{ matrix.Tag}} |