From be239338ba18bca306c810beecc5487672e3ce11 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Tue, 27 Feb 2024 08:25:13 +0100 Subject: [PATCH] Set RATTLER_BUILD_COLOR to always, update to rattler-build 0.12.0 (#7) --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index aed848c..e64b56d 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: rattler-build-version: description: Version of rattler-build to use required: false - default: 'v0.11.0' + default: 'v0.12.0' recipe-path: description: Path to the recipe.yaml file required: true @@ -67,6 +67,7 @@ runs: rattler-build build --recipe "${{ inputs.recipe-path }}" ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' + RATTLER_BUILD_COLOR: 'always' - name: Build conda package (Windows) shell: powershell if: ${{ runner.os == 'Windows' }} @@ -74,6 +75,7 @@ runs: rattler-build build --recipe "${{ inputs.recipe-path }}" ${{ inputs.build-args }} env: RATTLER_BUILD_ENABLE_GITHUB_INTEGRATION: 'true' + RATTLER_BUILD_COLOR: 'always' - name: Upload build artifacts uses: actions/upload-artifact@v4 if: ${{ inputs.upload-artifact == 'true' }}