Files
trouvetonprofile/CMD.md
2025-10-20 20:34:45 +02:00

27 lines
718 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# commande Tree
```bash
tree -a -I 'node_modules|coverage|logs|.vscode|.git|dist|.git|.venv|__pycache__'
```
# Utilisation de `act` avec des workflows Gitea
```bash
# Lister les workflows trouvés sous .gitea/workflows
act -W .gitea/workflows -l
# Lancer lévénement "push/pull_request/workflow_dispatch/release"
act -W .gitea/workflows push
# Lancer lévénement "pull_request"
act -W .gitea/workflows pull_request
# Nexécuter quun seul job du workflow (ex. "build")
act -W .gitea/workflows -j build
```
# Dry-run et exécution en arrière-plan
```bash
echo 'Lancement en dry-run de lévénement "push"'
act -n push
echo 'Activation de lévénement "push"'
act push > act_push.log 2>&1 &
```