Skip to content

Releases: versioner-io/versioner-github-action

v1.0.0 - Initial Public Release

06 Nov 18:12

Choose a tag to compare

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 build and deployment events
  • Rejection Handling - Configurable fail_on_rejection for 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: success

Record 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: success

See https://docs.versioner.io for more usage information