From 83b6512032531a9f2b1ed88d39b97bba4bea2754 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 4 Jul 2023 22:53:46 +0200 Subject: [PATCH] Fix d5a72193: [CI] downloading single artifact doesn't add folder to it (#11107) --- .github/workflows/upload-gog.yml | 5 +++++ .github/workflows/upload-steam.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/upload-gog.yml b/.github/workflows/upload-gog.yml index e8143024a0..c1d0678859 100644 --- a/.github/workflows/upload-gog.yml +++ b/.github/workflows/upload-gog.yml @@ -18,26 +18,31 @@ jobs: uses: actions/download-artifact@v3 with: name: internal-source + path: internal-source - name: Download bundle (Windows x86) uses: actions/download-artifact@v3 with: name: openttd-windows-x86 + path: openttd-windows-x86 - name: Download bundle (Windows x64) uses: actions/download-artifact@v3 with: name: openttd-windows-x64 + path: openttd-windows-x64 - name: Download bundle (MacOS) uses: actions/download-artifact@v3 with: name: openttd-macos-universal + path: openttd-macos-universal - name: Download bundle (Linux) uses: actions/download-artifact@v3 with: name: openttd-linux-generic + path: openttd-linux-generic - name: Install GOG Galaxy Build Creator run: | diff --git a/.github/workflows/upload-steam.yml b/.github/workflows/upload-steam.yml index 2b0173f91f..808983f828 100644 --- a/.github/workflows/upload-steam.yml +++ b/.github/workflows/upload-steam.yml @@ -21,26 +21,31 @@ jobs: uses: actions/download-artifact@v3 with: name: internal-source + path: internal-source - name: Download bundle (Windows x86) uses: actions/download-artifact@v3 with: name: openttd-windows-x86 + path: openttd-windows-x86 - name: Download bundle (Windows x64) uses: actions/download-artifact@v3 with: name: openttd-windows-x64 + path: openttd-windows-x64 - name: Download bundle (MacOS) uses: actions/download-artifact@v3 with: name: openttd-macos-universal + path: openttd-macos-universal - name: Download bundle (Linux) uses: actions/download-artifact@v3 with: name: openttd-linux-generic + path: openttd-linux-generic - name: Setup steamcmd uses: CyberAndrii/setup-steamcmd@v1