diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 46a9a0c935..0409bca966 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -33,7 +33,8 @@ jobs: echo "build_all_demos=$build_all_demos" >> $GITHUB_OUTPUT - name: Fail for Pull Request in Draft without ci:build-all-qml-demos label - if: steps.build_all_demos.outputs.build_all_demos == 'false' && github.event.pull_request.draft == true + # TODO: Uncomment this condition. + # if: steps.build_all_demos.outputs.build_all_demos == 'false' && github.event.pull_request.draft == true run: | message="By default, CI checks will not run on draft PRs. If you need the CI checks to run, you can mark the PR ready for review, or add the label 'ci:build-all-qml-demos' @@ -72,7 +73,7 @@ jobs: run: | metadata_files=() input_demos_to_build="$DEMOS_TO_BUILD" - + if [ -z "$input_demos_to_build" ]; then readarray -d '' metadata_files < <(find demonstrations -name "*.metadata.json" -not -path "demonstrations/demonstrations_categories.metadata.json" -print0) else @@ -81,12 +82,12 @@ jobs: metadata_files+=("demonstrations/${metadata_file%.py}.metadata.json") done fi - + metadata_files_str="${metadata_files[@]}" - + echo 'The following metadata files will be validated =>' echo "$metadata_files_str" - + echo "file_names=$metadata_files_str" >> $GITHUB_OUTPUT - name: Set number of workers needed diff --git a/.github/workflows/build-text.yml b/.github/workflows/build-text.yml index 80a51c3dd7..25c8b50d56 100644 --- a/.github/workflows/build-text.yml +++ b/.github/workflows/build-text.yml @@ -30,9 +30,6 @@ jobs: uses: ./.github/workflows/upload-text.yml with: branch: ${{ github.ref }} - aws_s3_bucket_dir: commits/${{ github.ref_name }}-${{ github.sha }} - artifact_name: text.zip - qml_react_webhook_event_type: build-pl-site-staging secrets: aws_region: ${{ secrets.AWS_REGION }} @@ -47,9 +44,6 @@ jobs: uses: ./.github/workflows/upload-text.yml with: branch: ${{ github.ref }} - aws_s3_bucket_dir: commits/${{ github.ref_name }}-${{ github.sha }} - artifact_name: text.zip - qml_react_webhook_event_type: build-pl-site-dev secrets: aws_region: ${{ secrets.AWS_REGION }}