check difference between steps and runs
parent
8ed38ddc87
commit
0f3cbe49ec
|
@ -49,6 +49,11 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
projectPath: ${{ matrix.projectPath }}
|
||||||
|
unityVersion: ${{ matrix.unityVersion }}
|
||||||
|
targetPlatform: ${{ matrix.targetPlatform }}
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
projectPath: ${{ matrix.projectPath }}
|
projectPath: ${{ matrix.projectPath }}
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13,6 +13,9 @@ class Cache {
|
||||||
}
|
}
|
||||||
|
|
||||||
static async load() {
|
static async load() {
|
||||||
|
const allLibraryVersions = tc.findAllVersions('library');
|
||||||
|
console.log(`Versions available for library: ${allLibraryVersions}`);
|
||||||
|
|
||||||
// Look for cache
|
// Look for cache
|
||||||
const libraryFolder = await tc.find('library', this.libraryKey);
|
const libraryFolder = await tc.find('library', this.libraryKey);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue