https://github.com/secondlife/action-autobuild
Build and package an autobuild project
https://github.com/secondlife/action-autobuild
Last synced: 19 days ago
JSON representation
Build and package an autobuild project
- Host: GitHub
- URL: https://github.com/secondlife/action-autobuild
- Owner: secondlife
- License: mit
- Created: 2022-09-02T20:19:58.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-01T17:42:23.000Z (4 months ago)
- Last Synced: 2026-03-29T03:23:08.538Z (3 months ago)
- Language: Shell
- Size: 80.1 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# action-autobuild
Build and package an autobuild project.
Example:
```yaml
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](action.yaml).