Skip to content

Commit

Permalink
feat: remove curl from steps (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
danteay authored Jun 26, 2024
1 parent 54cf846 commit f9bfaf6
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,11 @@ inputs:
default: 'false'
pkl-version:
description: 'PKL version'
default: '0.25.3'
default: '0.26.0'

gitcmd:
description: 'Enable Git'
default: 'false'

curl:
description: 'Enable Curl'
default: 'false'

runs:
using: composite
Expand Down Expand Up @@ -87,14 +83,3 @@ runs:
else
echo "Git already installed..."
fi
- name: Install curl
if: ${{ inputs.curl == 'true' }}
shell: bash
run: |
if ! [ -x "$(command -v curl)" ]; then
sudo apt-get install curl -y
else
echo "curl already installed..."
fi

0 comments on commit f9bfaf6

Please sign in to comment.