Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release
on:
release:
types: [published]
jobs:
Tag:
uses: secondlife/update-major-tag-workflow/.github/workflows/update-major-tag.yaml@v1
name: Release

on:
release:
types: [published]

jobs:
Tag:
uses: secondlife/update-major-tag-workflow/.github/workflows/update-major-tag.yaml@v1
42 changes: 21 additions & 21 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Test
on:
pull_request:
push:
branches: [main]
tags: [v*]
jobs:
test:
strategy:
matrix:
os: [windows-2022, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
AUTOBUILD_CONFIGURATION: default
steps:
- uses: actions/checkout@v3
- uses: ./
with:
checkout: false
name: Test

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

jobs:
test:
strategy:
matrix:
os: [windows-2022, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
AUTOBUILD_CONFIGURATION: default
steps:
- uses: actions/checkout@v3
- uses: ./
with:
checkout: false
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
# Fix the last lines' trailing whitespace before correcting that they exist.
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
# Fix the last lines' trailing whitespace before correcting that they exist.
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
14 changes: 7 additions & 7 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright 2022 Linden Research, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Copyright 2022 Linden Research, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
50 changes: 25 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# 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/autobuild@v1
```
For a full list of available action inputs see [action.yaml](action.yaml).
# 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/autobuild@v1
```

For a full list of available action inputs see [action.yaml](action.yaml).
Loading