Skip to content

Commit

Permalink
how do i compare thee
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehul Kar authored and Mehul Kar committed May 17, 2023
1 parent 75d2585 commit ee29dec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/setup-turborepo-environment/action.yml
Expand Up @@ -24,21 +24,21 @@ runs:
- name: Log Inputs
shell: bash
run: |
echo "setup-rust: ${{ inputs.setup-rust == true }}"
echo "setup-go: ${{ inputs.setup-go == true }}"
echo "setup-rust: ${{ inputs.setup-rust == 'true' }}"
echo "setup-go: ${{ inputs.setup-go == 'true' }}"
echo "target: ${{ inputs.target }}"
- name: "Setup Node"
uses: ./.github/actions/setup-node

- name: "Setup Go"
if: ${{ inputs.setup-go == true }}
if: ${{ inputs.setup-go == 'true' }}
uses: ./.github/actions/setup-go
with:
github-token: ${{ inputs.github-token }}

- name: "Setup Rust"
if: ${{ inputs.setup-rust == true }}
if: ${{ inputs.setup-rust == 'true' }}
uses: ./.github/actions/setup-rust
with:
target: ${{ inputs.target }}
Expand Down

0 comments on commit ee29dec

Please sign in to comment.