Skip to content

auto-it/setup-auto

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

setup-auto action

A GitHub action to set up Auto release tool

Features

  • Cross-platform: works on Linux, Windows, macOS
  • Installs pre-packaged binary:
    • works for non-npm projects
    • all official plugins are available
  • Configures Git author to the @github-actions[bot]

Usage

Here's an example usage:

jobs:
  release:
    runs-on: # ...
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - uses: auto-it/setup-auto@v1

      - name: Release
        run: auto shipit

See action.yml for available action inputs. Notice that checkout step with fetch-depth: 0 is required for Auto to be able to run and calculate the version correctly.