Skip to content

Commit

Permalink
Fix ifs
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 8f992fd commit c071f55
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
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
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
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
if: ${{ inputs.enable_docker_multibuild }}
if: inputs.enable_docker_multibuild
- name: Set up buildx
uses: docker/setup-buildx-action@v1
if: ${{ inputs.enable_docker_multibuild }}
if: inputs.enable_docker_multibuild

0 comments on commit c071f55

Please sign in to comment.