Skip to content

Update GitHub Actions to fix deprecation warnings #50

Update GitHub Actions to fix deprecation warnings

Update GitHub Actions to fix deprecation warnings #50

Workflow file for this run

name: build-app
on: [push]
jobs:
build:
runs-on: macos-13
steps:
- name: Select Xcode 15
run: sudo xcode-select -s '/Applications/Xcode_15.0.1.app/Contents/Developer'
- uses: actions/checkout@v4
- run: brew install coreutils create-dmg gnu-sed meson nasm ninja patchutils python-setuptools
- name: Build
run: ./build.sh
- name: Save .dmg as an artifact
uses: actions/upload-artifact@v4
with:
name: release
path: "*.dmg"