From a0dd8784bcf55ecbb4810014a88d4f8a42af109a Mon Sep 17 00:00:00 2001 From: Mateo Pidal Date: Wed, 5 May 2021 22:59:05 -0300 Subject: [PATCH] WTF --- .github/workflows/qt.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/qt.yml b/.github/workflows/qt.yml index 8b1600b7..9dcfc4c9 100644 --- a/.github/workflows/qt.yml +++ b/.github/workflows/qt.yml @@ -28,6 +28,15 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 1 + + - name: Creates QtAccount File + uses: DamianReeves/write-file-action@v1.0 + if: steps.qt-cached.outputs.cache-hit != 'true' + with: + # The path to the file to write + path: "C:\\Users\\runneradmin\\AppData\\Roaming\\Qt\\qtaccount.ini" + # The contents of the file + contents: ${{ secrets.QTACCOUNT }} - name: Cache Qt Installed uses: actions/cache@v2.1.5 @@ -47,15 +56,6 @@ jobs: path: "installer.exe" # An explicit key for restoring and saving the cache key: ${{ runner.os }}-qt56-installer - - - name: Creates QtAccount File - uses: DamianReeves/write-file-action@v1.0 - if: steps.qt-cached.outputs.cache-hit != 'true' - with: - # The path to the file to write - path: "%APPDATA%\\Qt\\qtaccount.ini" - # The contents of the file - contents: ${{ secrets.QTACCOUNT }} - name: Download Qt Installer if: steps.installer-cached.outputs.cache-hit != 'true' && steps.qt-cached.outputs.cache-hit != 'true'