Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,20 @@ inputs:
runs:
using: "composite"
steps:
- name: Check StackQL is installed and set output
id: check-stackql
shell: bash
run: |
if command -v stackql &> /dev/null; then
echo "stackql_installed=true" >> $GITHUB_OUTPUT
else
echo "stackql_installed=false" >> $GITHUB_OUTPUT
fi


- name: Setup StackQL
uses: stackql/[email protected]
if: ${{steps.check-stackql.outputs.stackql_installed == 'false'}}
with:
use_wrapper: true

Expand Down