Merge branch 'vendor' into Bugsplat_1_1_5_setAttribute #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-2022, macos-11] | |
addrsize: ["64"] | |
include: | |
- os: windows-2022 | |
addrsize: "32" | |
continue-on-error: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: secondlife/action-autobuild@v4 | |
with: | |
addrsize: ${{ matrix.addrsize }} | |
release: | |
needs: build | |
runs-on: [ubuntu-latest] | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: secondlife/action-autobuild-release@v3 | |
with: | |
public: true |