changesette 0.1.0

A version and changelog manager for single-package applications, using the changesets file format
name: Setup changesette
description: Install the changesette binary

inputs:
  token:
    description: GitHub token for verifying build provenance
    default: ${{ github.token }}
    required: false

outputs:
  version:
    description: The version of changesette that was installed
    value: ${{ steps.install.outputs.version }}

runs:
  using: composite
  steps:
    - name: Install changesette
      id: install
      run: bash "$GITHUB_ACTION_PATH/install.sh"
      env:
        GH_TOKEN: ${{ inputs.token }}
      shell: bash