Update action.yml

This commit is contained in:
dal 2025-09-26 12:27:54 -06:00 committed by GitHub
parent 9f846b4dda
commit c615678e43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 15 deletions

View File

@ -80,20 +80,6 @@ runs:
echo "BUSTER_API_KEY=$API_KEY" >> $GITHUB_ENV echo "BUSTER_API_KEY=$API_KEY" >> $GITHUB_ENV
echo "BUSTER_HOST=$HOST" >> $GITHUB_ENV echo "BUSTER_HOST=$HOST" >> $GITHUB_ENV
- name: Check for buster.yml
shell: bash
working-directory: ${{ inputs.directory }}
run: |
if [[ ! -f "buster.yml" ]]; then
echo "❌ No buster.yml found in ${{ inputs.directory }}"
echo "💡 Run 'buster init' to create a project configuration"
exit 1
fi
echo "✅ Found buster.yml"
echo "📋 Project configuration:"
head -n 20 buster.yml | sed 's/^/ /'
- name: Deploy to Buster - name: Deploy to Buster
id: deploy id: deploy
shell: bash shell: bash
@ -175,4 +161,4 @@ runs:
echo '```' >> $GITHUB_STEP_SUMMARY echo '```' >> $GITHUB_STEP_SUMMARY
exit $DEPLOY_EXIT_CODE exit $DEPLOY_EXIT_CODE
fi fi