diff --git a/.github/workflows/templates/job-cmakebuild-windows.yml b/.github/workflows/job-cmakebuild-windows.yml similarity index 100% rename from .github/workflows/templates/job-cmakebuild-windows.yml rename to .github/workflows/job-cmakebuild-windows.yml diff --git a/.github/workflows/templates/job-deploy-windows.yml b/.github/workflows/job-deploy-windows.yml similarity index 100% rename from .github/workflows/templates/job-deploy-windows.yml rename to .github/workflows/job-deploy-windows.yml diff --git a/.github/workflows/templates/job-test-windows.yml b/.github/workflows/job-test-windows.yml similarity index 100% rename from .github/workflows/templates/job-test-windows.yml rename to .github/workflows/job-test-windows.yml diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 56471195..39c980f4 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: buildConfiguration: [Debug, Release] - uses: .github/workflows/templates/job-cmakebuild-windows.yml@v${{inputs.version_file}} + uses: .github/workflows/job-cmakebuild-windows.yml@v${{inputs.version_file}} with: configuration: ${{matrix.buildConfiguration}} @@ -20,10 +20,10 @@ jobs: strategy: matrix: testConfiguration: [Debug, Release] - uses: .github/workflows/templates/job-test-windows.yml@v${{inputs.version_file}} + uses: .github/workflows/job-test-windows.yml@v${{inputs.version_file}} with: configuration: ${{matrix.testConfiguration}} deploy: needs: test - uses: .github/workflows/templates/job-deploy-windows.yml@v${{inputs.version_file}} \ No newline at end of file + uses: .github/workflows/job-deploy-windows.yml@v${{inputs.version_file}} \ No newline at end of file