From 1bd4355bb9d0c3e867a4825f7261e44ef9ecbe89 Mon Sep 17 00:00:00 2001 From: Cristian Adam Date: Thu, 9 Dec 2021 18:56:48 +0100 Subject: GitHub Actions: Fix upload of release artifacts For the tagged release commits two artifacts were missing, see: https://github.com/qt-creator/qt-creator/actions/runs/1529947256 This commit fixes this. Change-Id: Idd046426aa4793194a43d235ff47caa6a02e1957 Reviewed-by: Reviewed-by: Eike Ziller --- .github/workflows/build_cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 91f70ca05e..ea6f1d77a5 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -709,14 +709,14 @@ jobs: - name: Download qtcreatorcdbext artifact if: matrix.config.artifact == 'Windows-MSVC' - uses: actions/upload-artifact@v2 + uses: actions/download-artifact@v2 with: name: qtcreatorcdbext-${{ matrix.config.artifact }}-${{ github.run_id }}.7z path: ./ - name: Download disk image artifact if: matrix.config.artifact == 'macOS' - uses: actions/upload-artifact@v2 + uses: actions/download-artifact@v2 with: name: qt-creator-${{ matrix.config.artifact }}-${{ github.run_id }}.dmg path: ./ -- cgit v1.2.3