1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

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]
This commit is contained in:
Patrik Ragnarsson 2021-10-04 23:43:12 +02:00
parent 20dc923b0b
commit 61dd7f4670
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ jobs:
} }
bundle install --jobs 4 --retry 3 bundle install --jobs 4 --retry 3
- name: set SSL - name: Compile Puma without SSL support
if: matrix.no-ssl == ' no SSL' if: matrix.no-ssl == ' no SSL'
shell: bash shell: bash
run: echo 'DISABLE_SSL=true' >> $GITHUB_ENV run: echo 'DISABLE_SSL=true' >> $GITHUB_ENV

View file

@ -50,7 +50,7 @@ jobs:
timeout-minutes: 5 timeout-minutes: 5
run: bundle install --jobs 4 --retry 3 run: bundle install --jobs 4 --retry 3
- name: set SSL - name: Compile Puma without SSL support
if: matrix.no-ssl == ' no SSL' if: matrix.no-ssl == ' no SSL'
shell: bash shell: bash
run: echo 'DISABLE_SSL=true' >> $GITHUB_ENV run: echo 'DISABLE_SSL=true' >> $GITHUB_ENV