# release > Publish a new release of hardimpactdev/craft-laravel to Packagist. Handles CHANGELOG updates, git tagging via GitHub CLI, and creating GitHub releases. - Author: nckrtl - Repository: hardimpactdev/craft-laravel - Version: 20260119081301 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/hardimpactdev/craft-laravel - Web: https://mule.run/skillshub/@@hardimpactdev/craft-laravel~release:20260119081301 --- --- name: release description: Publish a new release of hardimpactdev/craft-laravel to Packagist. Handles CHANGELOG updates, git tagging via GitHub CLI, and creating GitHub releases. allowed-tools: Read, Write, Edit, Bash, Glob, Grep --- # Release Workflow for hardimpactdev/craft-laravel Publish new versions to Packagist via GitHub releases. ## Quick Release ```bash # 1. Check current version git fetch --tags git tag --sort=-v:refname | head -3 # 2. Determine next version (see Version Types below) VERSION="0.1.4" # Set appropriately # 3. Update CHANGELOG.md with new version section # 4. Commit changes (if any uncommitted work) git add -A git commit -m "Release v$VERSION" git push origin main # 5. Create GitHub release (auto-publishes to Packagist) gh release create "v$VERSION" --title "v$VERSION" --notes-file - <