Add the tool name in left of the filament combobox (10 letters max) #10
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: C/C++ Release candidate macos | |
on: | |
push: | |
branches: | |
- rc | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: 'rc' | |
- name: build deps & slicer | |
run: ./BuildMacOS.sh -dsi | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rc_macos.tar | |
path: build/${{ github.event.repository.name }}.tar | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rc_macos.dmg | |
path: build/${{ github.event.repository.name }}.dmg |