diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-30 09:23:32 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-01 20:18:10 +0100 |
commit | 0c375fcd31448ef470e9a840fb1130775ef05e88 (patch) | |
tree | b5674390700e892e5d7fc2e3139648ef58bf8898 | |
parent | 1156f7bda0bb3728fb275cb1a12580bfb84156b1 (diff) | |
download | libquotient-0c375fcd31448ef470e9a840fb1130775ef05e88.tar.gz libquotient-0c375fcd31448ef470e9a840fb1130775ef05e88.zip |
Use the default path to install Qt
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af8b7eb1..8d45b09a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,14 +31,14 @@ jobs: id: cache-qt uses: actions/cache@v2 with: - path: ../../Qt + path: ${{runner.workspace}}/Qt key: ${{ runner.os }}-QtCache - name: Install Qt uses: jurplel/install-qt-action@v2.11.1 with: version: '5.9.9' - dir: ${{runner.workspace}}/.. +# dir: ${{runner.home}} cached: ${{ steps.cache-qt.outputs.cache-hit }} - name: Create Build Environment |