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