Use LL_BUILD_RELEASE for macOS and Linux as well as Windows. #27
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: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ["v*.*.*"] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [windows-2022, macos-13, ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: secondlife/action-autobuild@v3 | |
with: | |
addrsize: "64" | |
release: | |
needs: build | |
runs-on: [ubuntu-latest] | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: secondlife/action-autobuild-release@v3 | |
with: | |
# false causes 'creds=github' to be added to generated | |
# 'autobuild installables edit' commands | |
public: false |