Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 491 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 491 Bytes

action-autobuild

Build and package an autobuild project.

Example:

name: Build

on:
  pull_request:
  tag:
    branches: [main]
    tags: [v*]

jobs:
  build:
    strategy:
      matrix:
        os: [windows-2019, macos-11, ubuntu-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: secondlife/action-autobuild@v3
        with:
          autobuild-version: 3.9.0 # PyPI version or git ref

For a full list of available action inputs see action.yaml.