Skip to content

fix again

fix again #15

Workflow file for this run

name: Test Action
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
steps:
- uses: actions/checkout@v4
- id: setup-mm
uses: ./
- name: Verify extraction
shell: bash
run: |
echo "▶ Using version: ${{ steps.setup-mm.outputs.version }}"
echo "▶ Install path: ${{ steps.setup-mm.outputs.mm-data-dir }}"
expected="${{ steps.setup-mm.outputs.mm-data-dir }}"
if [ ! -d "$expected" ]; then
echo "❌ Extracted directory not found at $expected"
exit 1
fi
echo "✅ Found $expected, listing contents:"
ls -la "$expected"