diff --git a/.github/workflows/assign-env-from-json.yml b/.github/workflows/assign-env-from-json.yml index 7405b59..bcd562b 100644 --- a/.github/workflows/assign-env-from-json.yml +++ b/.github/workflows/assign-env-from-json.yml @@ -14,6 +14,9 @@ on: update_catalog: description: The release_dir property from integration-manifest.json value: ${{ jobs.assign-from-json.outputs.update_catalog }} + release_project: + description: The release_project property from integration-manifest.json + value: ${{ jobs.assign-from-json.outputs.release_project }} UOFramework: description: The UOFramework property from integration-manifest.json value: ${{ jobs.assign-from-json.outputs.UOFramework }} diff --git a/.github/workflows/dotnet-build-and-release.yml b/.github/workflows/dotnet-build-and-release.yml index d9bac09..c300b8f 100644 --- a/.github/workflows/dotnet-build-and-release.yml +++ b/.github/workflows/dotnet-build-and-release.yml @@ -15,6 +15,10 @@ on: description: The relative directory inside the repo where the build artifacts to publish for release will be located required: false type: string + release_project: + description: The relative file location for csproj + required: false + type: string integration_type: description: The extension integration_type required: true diff --git a/.github/workflows/starter.yml b/.github/workflows/starter.yml index bbd49ea..e9621df 100644 --- a/.github/workflows/starter.yml +++ b/.github/workflows/starter.yml @@ -92,6 +92,7 @@ jobs: release_version: ${{ needs.call-create-github-release-workflow.outputs.release_version }} release_url: ${{ needs.call-create-github-release-workflow.outputs.release_url }} release_dir: ${{ needs.call-assign-from-json-workflow.outputs.release_dir }} + release_project: ${{ needs.call-assign-from-json-workflow.outputs.release_project }} integration_type: ${{ needs.call-assign-from-json-workflow.outputs.integration_type }} secrets: token: ${{ secrets.token }}