Skip to content

Deploy Release

Deploy Release #9

name: Deploy Release
on:
workflow_dispatch:
jobs:
build-mdl-sdk:
name: Build MDL SDK
uses: pablode/MDL-SDK/.github/workflows/[email protected]
with:
cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
build-usd2502:
name: Build gatling for USD v25.02
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 25.02
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
run-graphical-tests: true
build-usd2411:
name: Build gatling for USD v24.11
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.11
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
run-graphical-tests: true
build-usd2408:
name: Build gatling for USD v24.08
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.08
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
run-graphical-tests: true
build-usd2405:
name: Build gatling for USD v24.05
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.05
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
build-usd2403:
name: Build gatling for USD v24.03
needs: build-mdl-sdk
uses: ./.github/workflows/build-usd.yml
with:
usd-version: 24.03
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
upload-install-artifacts: true
build-houdini20:
name: Build gatling for Houdini 20.0
needs: build-mdl-sdk
uses: ./.github/workflows/build-houdini20.yml
with:
mdl-sdk-cache-key-prefix: ${{ vars.MDL_SDK_CACHE_KEY_PREFIX }}
deploy-release:
name: Deploy Release
needs: [build-usd2502, build-usd2411, build-usd2408, build-usd2405, build-usd2403, build-houdini20]
runs-on: ubuntu-latest
steps:
- name: Download artifacts for USD v25.02
uses: actions/download-artifact@v3
with:
name: ${{ needs.build-usd2502.outputs.archive-name }}
- name: Download artifacts for USD v24.11
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2411.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for USD v24.08
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2408.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for USD v24.05
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2405.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for USD v24.03
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-usd2403.outputs.archive-name }}*
merge-multiple: true
- name: Download artifacts for Houdini 20.0
uses: actions/download-artifact@v4
with:
pattern: ${{ needs.build-houdini20.outputs.archive-name }*}

Check failure on line 106 in .github/workflows/deploy-release.yml

View workflow run for this annotation

GitHub Actions / Deploy Release

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-release.yml (Line: 106, Col: 20): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
merge-multiple: true
- name: Deploy draft release
uses: softprops/action-gh-release@d4e8205d7e959a9107da6396278b2f1f07af0f9b
with:
name: "Version XXX"
body: "TBD"
files: |
*.tar.gz
fail_on_unmatched_files: true
draft: true