From 9ccb1ae8ce8e2b6d0afb7a827741921915e4fcda Mon Sep 17 00:00:00 2001 From: Beq Date: Thu, 26 Sep 2024 01:51:29 +0100 Subject: [PATCH] downloader can unpack just the json. we could allow it to continue on fail but all future builds will have the json if they complete. --- .github/workflows/tag-fs-build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tag-fs-build.yml b/.github/workflows/tag-fs-build.yml index 2f462ef559..0b764e5a56 100644 --- a/.github/workflows/tag-fs-build.yml +++ b/.github/workflows/tag-fs-build.yml @@ -76,15 +76,14 @@ jobs: with: workflow: build_viewer.yml run_number: ${{ steps.get_run_number.outputs.build_run_number }} + name: build_info + skip_unpack: false path: build_info # workout the inputs based on the trigger type - - name: Unpack the json and get inputs + - name: Query the json and get input overrides if applicable id: get_inputs - run: | - # Unzip the artifact - unzip -o build_info/build_info.zip -d build_info - + run: | # Parse the JSON file RELEASE_TYPE=$(jq -r '.release_type' build_info/build_info.json) VIEWER_VERSION=$(jq -r '.viewer_version' build_info/build_info.json)