From 61dd7f4670da7ba6895fe7292340cabe90fc5bff Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Mon, 4 Oct 2021 23:43:12 +0200 Subject: [PATCH] CI: Improve "set SSL" step name This step is only run for some jobs. Actions UI indicates if it is skipped. Make it easy for humans to understand what was skipped. A skipped step has no output. [ci skip] --- .github/workflows/mri.yml | 2 +- .github/workflows/non_mri.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mri.yml b/.github/workflows/mri.yml index 9340a755..834cd676 100644 --- a/.github/workflows/mri.yml +++ b/.github/workflows/mri.yml @@ -53,7 +53,7 @@ jobs: } bundle install --jobs 4 --retry 3 - - name: set SSL + - name: Compile Puma without SSL support if: matrix.no-ssl == ' no SSL' shell: bash run: echo 'DISABLE_SSL=true' >> $GITHUB_ENV diff --git a/.github/workflows/non_mri.yml b/.github/workflows/non_mri.yml index c67378e6..d9b4b5cc 100644 --- a/.github/workflows/non_mri.yml +++ b/.github/workflows/non_mri.yml @@ -50,7 +50,7 @@ jobs: timeout-minutes: 5 run: bundle install --jobs 4 --retry 3 - - name: set SSL + - name: Compile Puma without SSL support if: matrix.no-ssl == ' no SSL' shell: bash run: echo 'DISABLE_SSL=true' >> $GITHUB_ENV