-
-
Notifications
You must be signed in to change notification settings - Fork 24
43 lines (35 loc) · 964 Bytes
/
Copy pathosx.yml
File metadata and controls
43 lines (35 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: osx
on:
push:
branches:
- DemoApp
permissions:
contents: write
jobs:
build_osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: checkout submodules
run: git submodule update --init --recursive
- name: configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: build + package
run: |
cmake --build build --config Release
cmake --build build --config Release --target package
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: ImCoolBarApp_osx_x64
path: ImCoolBarApp_*
if-no-files-found: warn
- name: Upload to DRAFT release
uses: softprops/action-gh-release@v2
with:
tag_name: nightly-draft
name: Nightly Draft
draft: true
prerelease: false
overwrite: true
files: ImCoolBarApp_*