From f15439010402a047331e913f26d428004b225e6d Mon Sep 17 00:00:00 2001 From: Volker Enderlein Date: Tue, 10 Sep 2024 22:30:21 +0200 Subject: [PATCH] Update documentation-workflow.yml --- .github/workflows/documentation-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/documentation-workflow.yml b/.github/workflows/documentation-workflow.yml index f47bbb6..d9c7e34 100644 --- a/.github/workflows/documentation-workflow.yml +++ b/.github/workflows/documentation-workflow.yml @@ -27,7 +27,7 @@ jobs: echo download file $DOWNLOAD_FILE_COIN from address $DOWNLOAD_ADDRESS_COIN curl -s -S -L -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/octet-stream" -o $DOWNLOAD_FILE_COIN $DOWNLOAD_ADDRESS_COIN tar xzf $DOWNLOAD_FILE_COIN -C cmake_download_dir - DOWNLOAD_FILE_SOQT=soqt-latest-Qt5-Ubuntu2204-gcc13-x64.tar.gz + DOWNLOAD_FILE_SOQT=soqt-latest-Qt5.15-Ubuntu2204-gcc13-x64.tar.gz RELEASE_ID=`curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/coin3d/soqt/releases | jq -r --arg SOQT_REPO_TAG_NAME "CI-builds" '.[] | select(.tag_name==$SOQT_REPO_TAG_NAME) | .id'` ASSET_ID=`curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/coin3d/soqt/releases/$RELEASE_ID | jq -r --arg DOWNLOAD_FILE_SOQT "$DOWNLOAD_FILE_SOQT" '.assets[] | select(.name==$DOWNLOAD_FILE_SOQT) | .id'` export DOWNLOAD_ADDRESS_SOQT=https://api.github.com/repos/coin3d/soqt/releases/assets/$ASSET_ID