-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Description
Problem
Many projects use mise run install or similar tasks to install project dependencies after tool installation. Currently requires separate workflow step:
- uses: jdx/mise-action@v3
- run: mise run install # Extra step neededProposed Solution
Add post_install_command parameter:
- uses: jdx/mise-action@v3
with:
post_install_command: "mise run install"Would execute after mise install completes, before action finishes.
Use Cases
mise run install- Install npm/pip/cargo depsmise run setup- Project-specific setup
Benefits
- Cleaner workflows (one step vs two)
- Ensures commands run in correct mise environment
- Common pattern in many projects
Backwards Compatibility
Fully backwards compatible - optional parameter with empty default.
Metadata
Metadata
Assignees
Labels
No labels