From 29ed4dd5a15321a10f0e4e20e41b1895cb13c05b Mon Sep 17 00:00:00 2001 From: Mateo Pidal Date: Wed, 5 May 2021 17:40:43 -0300 Subject: [PATCH] Test Cache --- .github/workflows/qt.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/qt.yml b/.github/workflows/qt.yml index 1e5a1972..b4d694f2 100644 --- a/.github/workflows/qt.yml +++ b/.github/workflows/qt.yml @@ -47,8 +47,14 @@ jobs: - name: Cache uses: actions/cache@v2.1.5 + id: installer-cached with: # A list of files, directories, and wildcard patterns to cache and restore path: "installer.exe" # An explicit key for restoring and saving the cache key: ${{ runner.os }}-qt56-installer + + - name: Download QT Installer + if: steps.installer-cached.outputs.cache-hit != 'true' + run: | + curl https://download.qt.io/new_archive/qt/5.6/5.6.3/qt-opensource-windows-x86-mingw492-5.6.3.exe --output installer.exe