check difference between steps and runs

pull/26/head
Webber 2020-01-26 00:28:50 +01:00
parent 8ed38ddc87
commit 0f3cbe49ec
3 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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);