Skip to content

Cleanup Variable setup #26

Cleanup Variable setup

Cleanup Variable setup #26

Workflow file for this run

---
name: Test Action Locally
"on":
push:
branches: [main]
workflow_dispatch:
jobs:
test-build-only:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Test build without deployment
uses: ./
with:
files: |
README.md
ACTION.md
CHANGELOG.md
title: 'Microdocs Test'
deploy: false
output: 'test-output.html'
- name: Verify output
run: |
if [ -f "test-output.html" ]; then
echo "✅ Output file created successfully"
ls -lh test-output.html
else
echo "❌ Output file not found"
exit 1
fi