diff --git a/forge/actions/install/action.yml b/forge/actions/install/action.yml index 2ef6ab9..e6eed2c 100644 --- a/forge/actions/install/action.yml +++ b/forge/actions/install/action.yml @@ -11,13 +11,14 @@ runs: using: composite steps: - name: Check if earthly is installed + continue-on-error: true id: check shell: bash run: | if ! command -v earthly &> /dev/null; then - echo "found=false" >> $GITHUB_ENV + echo "found=false" >> $GITHUB_OUTPUT else - echo "found=true" >> $GITHUB_ENV + echo "found=true" >> $GITHUB_OUTPUT fi - name: Install Earthly uses: earthly/actions-setup@v1