Releases: versioner-io/versioner-github-action
Releases · versioner-io/versioner-github-action
v1.0.0 - Initial Public Release
v1.0.0 - Initial Public Release
First stable release of the Versioner GitHub Action! 🎉
Features
- ✅ Build Event Tracking - Track builds without deployments
- ✅ Deployment Event Tracking - Track deployments to any environment
- ✅ Dual Event Types - Support for both
buildanddeploymentevents - ✅ Rejection Handling - Configurable
fail_on_rejectionfor policy enforcement - ✅ Auto-populated Metadata - Automatically captures GitHub context (SHA, branch, user, etc.)
- ✅ GitHub Step Summary - Beautiful summary output in workflow runs with links to Versioner UI
- ✅ Comprehensive Examples - Extensive documentation and usage examples
Usage
Record a build
- name: Record a build
uses: versioner-io/versioner-github-action@main
with:
api_key: ${{ secrets.VERSIONER_API_KEY }}
event_type: build
version: ${{ github.sha }} # Or your own tag/version number
status: successRecord a deployment
- name: Track deployment
uses: versioner-io/versioner-github-action@v1.0.0
with:
api_key: ${{ secrets.VERSIONER_API_KEY }}
event_type: build
version: ${{ github.sha }} # Or your own tag/version number
environment: production
status: successSee https://docs.versioner.io for more usage information