From 89a20fd4359f3f19944626f01afb647e16a3d947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miles=20St=C3=B6tzner?= Date: Sat, 18 Nov 2023 18:41:34 +0100 Subject: [PATCH] fix --- .github/workflows/zenodo.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/zenodo.yaml b/.github/workflows/zenodo.yaml index c94434e590..13e039ef3f 100644 --- a/.github/workflows/zenodo.yaml +++ b/.github/workflows/zenodo.yaml @@ -48,9 +48,14 @@ jobs: - name: (ZENODO) Download files run: | - gh release download latest --dir /tmp/opentosca-vintner-zenodo-files - gh release download latest --dir /tmp/opentosca-vintner-zenodo-files --archive=zip - gh release download latest --dir /tmp/opentosca-vintner-zenodo-files --archive=tar.gz + cd /tmp/opentosca-vintner-zenodo-files + gh release download latest + + gh release download latest --archive=zip + mv opentosca-vintner-latest.zip opentosca-vintner.zip + + gh release download latest --archive=tar.gz + mv opentosca-vintner-latest.tar.gz opentosca-vintner.tar.gz env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}