You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
405 B
26 lines
405 B
language: cpp |
|
|
|
os: osx |
|
|
|
osx_image: xcode10.3 |
|
|
|
git: |
|
depth: false |
|
quiet: true |
|
|
|
addons: |
|
homebrew: |
|
brewfile: true |
|
|
|
script: |
|
- cd build |
|
- cmake -DBINARY_RELEASE=ON .. |
|
- sudo cmake --build . --target package -j $(sysctl -n hw.physicalcpu) |
|
|
|
deploy: |
|
provider: releases |
|
api_key: "$GITHUB_TOKEN" |
|
file: "build/devilutionx.dmg" |
|
skip_cleanup: true |
|
on: |
|
tags: true
|
|
|