Skip to content

Commit

Permalink
Fix ifs again
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Pivotto <[email protected]>
  • Loading branch information
roidelapluie committed Sep 6, 2022
1 parent c071f55 commit f350d94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/setup_environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
using: composite
steps:
- uses: actions/cache@v3
if: inputs.enable_go
if: inputs.enable_go == 'true'
with:
path: |
~/.cache/go-build
Expand All @@ -25,7 +25,7 @@ runs:
restore-keys: |
${{ runner.os }}-go-
- uses: actions/cache@v3
if: inputs.enable_npm
if: inputs.enable_npm == 'true'
with:
path: |
~/.npm
Expand All @@ -34,10 +34,10 @@ runs:
${{ runner.os }}-npm-
- run: make promu
shell: bash
if: inputs.enable_go
if: inputs.enable_go == 'true'
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
if: inputs.enable_docker_multibuild
if: inputs.enable_docker_multibuild == 'true'
- name: Set up buildx
uses: docker/setup-buildx-action@v1
if: inputs.enable_docker_multibuild
if: inputs.enable_docker_multibuild == 'true'

0 comments on commit f350d94

Please sign in to comment.