cfg_save_aliases
to save aliases to config.cfg
#337
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: macOS CI (Xcode) | |
on: | |
push | |
jobs: | |
build: | |
name: arm64-intel | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: macOS | |
if: runner.os == 'macOS' | |
run: | | |
cd MacOSX | |
./build-macos.sh | |
- name: Upload macOS artifact | |
uses: actions/upload-artifact@v4 | |
if: runner.os == 'macOS' | |
with: | |
name: QSS-M | |
path: | | |
MacOSX/build/Release/*.zip |