Test and publish #1
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: Test and publish | ||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
# push: | ||
# branches: | ||
# - main | ||
jobs: | ||
TestCommon: | ||
uses: ./.github/workflows/TestCommon.yml | ||
TestUnity3d: | ||
Check failure on line 13 in .github/workflows/TestAndPublish.yml GitHub Actions / Test and publishInvalid workflow file
|
||
uses: ./.github/workflows/TestUnity3d.yml | ||
PublishNugetPackage: | ||
needs: [TestCommon, TestUnity3d] | ||
uses: ./.github/workflows/PublishNugetPackage.yml | ||
PublishUnity3dPackage: | ||
needs: [PublishNugetPackage] | ||
uses: ./.github/workflows/PublishUnity3dPackage.yml |